aboutsummaryrefslogtreecommitdiffstats
path: root/Game/Code/Classes/UPlatformMacOSX.pas
diff options
context:
space:
mode:
authortobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2008-05-03 12:14:10 +0000
committertobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2008-05-03 12:14:10 +0000
commitad4c54706eaab157d975f832aecc836adbef827c (patch)
tree408b927e10eeed11c819d958f4ca538284141721 /Game/Code/Classes/UPlatformMacOSX.pas
parent4bc80aa3bf2395e9f9954848b74d0033ce982f6b (diff)
downloadusdx-ad4c54706eaab157d975f832aecc836adbef827c.tar.gz
usdx-ad4c54706eaab157d975f832aecc836adbef827c.tar.xz
usdx-ad4c54706eaab157d975f832aecc836adbef827c.zip
- fixed recursive calling of TPlatform.Halt.
- removed oldlinux stuff git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1059 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r--Game/Code/Classes/UPlatformMacOSX.pas6
1 files changed, 3 insertions, 3 deletions
diff --git a/Game/Code/Classes/UPlatformMacOSX.pas b/Game/Code/Classes/UPlatformMacOSX.pas
index 7b081607..789fc816 100644
--- a/Game/Code/Classes/UPlatformMacOSX.pas
+++ b/Game/Code/Classes/UPlatformMacOSX.pas
@@ -29,7 +29,7 @@ type
public
Function DirectoryFindFiles(Dir, Filter : WideString; ReturnAllSubDirs : Boolean) : TDirectoryEntryArray;
function TerminateIfAlreadyRunning(var WndTitle : String) : Boolean;
- procedure halt();
+ procedure Halt();
function GetLogPath : WideString;
function GetGameSharedPath : WideString;
function GetGameUserPath : WideString;
@@ -122,9 +122,9 @@ begin
end;
-procedure TPlatformMacOSX.halt;
+procedure TPlatformMacOSX.Halt;
begin
- halt;
+ System.Halt;
end;
function TPlatformMacOSX.FindSongFile(Dir, Mask: widestring): widestring;