aboutsummaryrefslogtreecommitdiffstats
path: root/Game/Code/switches.inc
diff options
context:
space:
mode:
authortobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2007-12-05 22:11:48 +0000
committertobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2007-12-05 22:11:48 +0000
commitb712fc1607a1b7b0f94c75391b9607a91b1f832b (patch)
tree82af1a7720f921ac3d6c4f56e91d172ec63a6aba /Game/Code/switches.inc
parent5bda51a14091c942b93753cb622400451a13031d (diff)
downloadusdx-b712fc1607a1b7b0f94c75391b9607a91b1f832b.tar.gz
usdx-b712fc1607a1b7b0f94c75391b9607a91b1f832b.tar.xz
usdx-b712fc1607a1b7b0f94c75391b9607a91b1f832b.zip
- bass input and output can now be switched on/off separately
- portaudio-support in linux enabled by default git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@674 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'Game/Code/switches.inc')
-rw-r--r--Game/Code/switches.inc13
1 files changed, 10 insertions, 3 deletions
diff --git a/Game/Code/switches.inc b/Game/Code/switches.inc
index a5ec9994..8d395688 100644
--- a/Game/Code/switches.inc
+++ b/Game/Code/switches.inc
@@ -16,7 +16,7 @@
{$DEFINE WIN32}
{$DEFINE TRANSLATE}
{$ELSE}
- {$DEFINE LAZARUS}
+ {$DEFINE LAZARUS}
{$ENDIF}
// {$MODE DELPHI} // JB - This is not allowed by the free pascal compiler for some reason ( At least on linux )
@@ -33,13 +33,20 @@
{$IFDEF win32}
- {$DEFINE UseBASS}
+ {$DEFINE UseBASSOutput}
+ {$DEFINE UseBASSInput}
+ //{$DEFINE UsePortaudio}
+ //{$DEFINE UsePortmixer}
{$IFDEF DEBUG}
{$IFNDEF DARWIN}
{$APPTYPE CONSOLE}
{$ENDIF}
{$ENDIF}
{$ELSE}
- {$UNDEF UseBASS}
+ //{$DEFINE FFMpegAudio}
+ {$DEFINE UsePortaudio}
{$ENDIF}
+{$IF Defined(UseBASSInput) or Defined(UseBASSOutput)}
+ {$DEFINE UseBASS}
+{$IFEND}