diff -r dfda97c153a4 -r 8e83c7e31720 hedgewars/hwengine.pas --- a/hedgewars/hwengine.pas Sat Jan 09 00:59:12 2010 +0000 +++ b/hedgewars/hwengine.pas Sat Jan 09 01:34:23 2010 +0000 @@ -19,8 +19,7 @@ {$INCLUDE "options.inc"} program hwengine; -uses - SDLh in 'SDLh.pas', +uses SDLh in 'SDLh.pas', {$IFDEF GLES11} gles11, {$ELSE} @@ -54,7 +53,11 @@ uFloat in 'uFloat.pas', uStats in 'uStats.pas', uChat in 'uChat.pas', - uLandTexture in 'uLandTexture.pas'; + uLandTexture in 'uLandTexture.pas' + {$IFDEF IPHONEOS} + , PascalExports in 'PascalExports.pas' + {$ENDIF} + ; // also: GSHandlers.inc // CCHandlers.inc @@ -163,7 +166,7 @@ CurrTime: Longword; event: TSDL_Event; {$IFDEF TOUCHINPUT} -var tiltValue: LongInt; +//var tiltValue: LongInt; {$ENDIF} begin PrevTime:= SDL_GetTicks; @@ -411,7 +414,7 @@ for i:= 0 to ParamCount do AddFileLog(inttostr(i) + ': ' + ParamStr(i)); {$IFDEF IPHONEOS} - WriteLnToConsole('Saving debug file at: ' + get_documents_path()); + WriteLnToConsole('Saving debug file at: ' + IPH_getDocumentsPath()); {$ENDIF} {$ENDIF} end;