aboutsummaryrefslogtreecommitdiffstats
path: root/Game/Code/switches.inc
diff options
context:
space:
mode:
authortobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2008-05-19 17:00:18 +0000
committertobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2008-05-19 17:00:18 +0000
commitd4bb21ab3781a9eca0790afa100f0c1edf32f31d (patch)
tree3087a97d21150cae6b60d4a6f6ceafe47e232af1 /Game/Code/switches.inc
parentfac0447cc006284cd9346505fb222eb1ee3728ed (diff)
downloadusdx-d4bb21ab3781a9eca0790afa100f0c1edf32f31d.tar.gz
usdx-d4bb21ab3781a9eca0790afa100f0c1edf32f31d.tar.xz
usdx-d4bb21ab3781a9eca0790afa100f0c1edf32f31d.zip
- changed "Windows" define to "MSWINDOWS"
- moved a few linklib for darwin to the libname section - added bass-define (undefined by default) for darwin back to switches.inc so switching to bass is easier git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1111 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r--Game/Code/switches.inc9
1 files changed, 5 insertions, 4 deletions
diff --git a/Game/Code/switches.inc b/Game/Code/switches.inc
index 5ba4bb7a..f507796d 100644
--- a/Game/Code/switches.inc
+++ b/Game/Code/switches.inc
@@ -41,7 +41,7 @@
{$I config-win.inc}
// enable debug-mode. For development only!
- //{$DEFINE DEBUG}
+ {.$DEFINE DEBUG}
{$IFDEF DEBUG}
// windows apps are either GUI- or console-apps. Console-apps will open
// an additional console-window for output. For development only!
@@ -57,7 +57,7 @@
// use "configure --enable-debug", "make debug" or
// the command-line parameter "-debug" instead of defining DEBUG directly
- //{$DEFINE DEBUG}
+ {.$DEFINE DEBUG}
// linux apps are always console-apps so leave this defined.
{$DEFINE CONSOLE}
{$ELSEIF Defined(DARWIN)}
@@ -65,8 +65,9 @@
{$I config-darwin.inc}
// enable debug-mode. For development only!
- //{$DEFINE DEBUG}
+ {.$DEFINE DEBUG}
{$DEFINE CONSOLE}
+ {.$DEFINE HaveBASS}
{$DEFINE UTF8_FILENAMES}
{$IFEND}
@@ -75,7 +76,7 @@
{$DEFINE UseBASSPlayback}
{$DEFINE UseBASSInput}
{$ELSEIF Defined(HavePortaudio)}
- //{$DEFINE UsePortaudioPlayback}
+ {.$DEFINE UsePortaudioPlayback}
{$DEFINE UseSDLPlayback}
{$DEFINE UsePortaudioInput}
{$IFDEF HavePortmixer}