aboutsummaryrefslogtreecommitdiffstats
path: root/Game/Code/UltraStar.dpr
diff options
context:
space:
mode:
authortobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2008-03-03 02:36:27 +0000
committertobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2008-03-03 02:36:27 +0000
commit797b4d8d6323c03cd0a04c54e72853cb4876edb7 (patch)
tree1f224f8e956d6b0ebb0695ad38c856707f9aa97b /Game/Code/UltraStar.dpr
parent27ac24c937a9e88c6d08b157d26c2d308e4e76a6 (diff)
downloadusdx-797b4d8d6323c03cd0a04c54e72853cb4876edb7.tar.gz
usdx-797b4d8d6323c03cd0a04c54e72853cb4876edb7.tar.xz
usdx-797b4d8d6323c03cd0a04c54e72853cb4876edb7.zip
- Portaudio-Core added (at the moment just one helper function)
- Removed the version-number from the project-file (there were three different locations were version numbers were declared and one was wrong (UCore.Create stated it was beta)). I moved the USDX version number to UConfig.pas (Will be introduced in one of the following commits). git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@893 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r--Game/Code/UltraStar.dpr6
1 files changed, 2 insertions, 4 deletions
diff --git a/Game/Code/UltraStar.dpr b/Game/Code/UltraStar.dpr
index 55046af3..4acb5d1f 100644
--- a/Game/Code/UltraStar.dpr
+++ b/Game/Code/UltraStar.dpr
@@ -24,6 +24,7 @@ uses
{$ENDIF}
{$IFDEF UsePortaudio}
portaudio in 'lib\portaudio\delphi\portaudio.pas',
+ UAudioCore_Portaudio in 'Classes\UAudioCore_Portaudio.pas',
{$ENDIF}
{$IFDEF UsePortmixer}
portmixer in 'lib\portmixer\delphi\portmixer.pas',
@@ -127,7 +128,7 @@ uses
UPluginInterface in 'Classes\UPluginInterface.pas', //Interface offered by Core to Plugins
uPluginLoader in 'Classes\uPluginLoader.pas', //New Plugin Loader Module
- UParty in 'Classes\UParty.pas', // to - do : rewrite Party Manager as Module, reomplent ability to offer party Mody by Plugin
+ UParty in 'Classes\UParty.pas', // TODO: rewrite Party Manager as Module, reomplent ability to offer party Mody by Plugin
UPlatform in 'Classes\UPlatform.pas',
{$IFDEF WIN32}
UPlatformWindows in 'Classes\UPlatformWindows.pas',
@@ -233,9 +234,6 @@ uses
{$ENDIF}
SysUtils;
-const
- Version = 'UltraStar Deluxe V 1.10 Alpha Build';
-
{$IFNDEF FPC}
begin
Main;