aboutsummaryrefslogtreecommitdiffstats
path: root/Game/Code/UltraStar.lpr
diff options
context:
space:
mode:
authorjaybinks <jaybinks@b956fd51-792f-4845-bead-9b4dfca2ff2c>2007-09-19 13:13:37 +0000
committerjaybinks <jaybinks@b956fd51-792f-4845-bead-9b4dfca2ff2c>2007-09-19 13:13:37 +0000
commit84beb7412eaca48cbf5c9915b83e5f8c79c9a0e7 (patch)
tree1356601393266644728a0ee1d1e3cc26dab4a135 /Game/Code/UltraStar.lpr
parent90bf63406cd1dbcc9c041a858ef2f030d58f1f25 (diff)
downloadusdx-84beb7412eaca48cbf5c9915b83e5f8c79c9a0e7.tar.gz
usdx-84beb7412eaca48cbf5c9915b83e5f8c79c9a0e7.tar.xz
usdx-84beb7412eaca48cbf5c9915b83e5f8c79c9a0e7.zip
fixes to get working in lazarus..
compiling, linking, starting to run.. just fixing stuff :) git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@397 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r--Game/Code/UltraStar.lpr7
1 files changed, 2 insertions, 5 deletions
diff --git a/Game/Code/UltraStar.lpr b/Game/Code/UltraStar.lpr
index 40fb582c..6aa8b53a 100644
--- a/Game/Code/UltraStar.lpr
+++ b/Game/Code/UltraStar.lpr
@@ -4,9 +4,7 @@ program UltraStar;
{$IFDEF FPC}
{$MODE DELPHI}
-{$ENDIF}
-
-{$IFNDEF FPC}
+{$ELSE}
{$R 'UltraStar.res' 'UltraStar.rc'}
{$ENDIF}
@@ -209,7 +207,6 @@ begin
Log.Enabled := Not Params.NoLog;
Log.BenchmarkStart(0);
-{*
// Language
Log.BenchmarkStart(1);
Log.LogStatus('Initialize Paths', 'Initialization'); InitializePaths;
@@ -384,6 +381,6 @@ begin
//------------------------------
if Ini.LPT = 1 then LCD.Clear;
if Ini.LPT = 2 then Light.TurnOff;
-*}
+
Log.Free;
end.