aboutsummaryrefslogtreecommitdiffstats
path: root/Game/Code/Classes
diff options
context:
space:
mode:
authorjaybinks <jaybinks@b956fd51-792f-4845-bead-9b4dfca2ff2c>2008-01-12 12:49:16 +0000
committerjaybinks <jaybinks@b956fd51-792f-4845-bead-9b4dfca2ff2c>2008-01-12 12:49:16 +0000
commitceae3d4f3b8d1697ec345787b35064f96fc67e14 (patch)
tree6719bcc4572e07d26a6aef98f410dc96027d443d /Game/Code/Classes
parent19ab8eded9d18e077906fd716ab25992eba1767d (diff)
downloadusdx-ceae3d4f3b8d1697ec345787b35064f96fc67e14.tar.gz
usdx-ceae3d4f3b8d1697ec345787b35064f96fc67e14.tar.xz
usdx-ceae3d4f3b8d1697ec345787b35064f96fc67e14.zip
oops... :)
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@791 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'Game/Code/Classes')
-rw-r--r--Game/Code/Classes/UPlatformMacOSX.pas13
1 files changed, 6 insertions, 7 deletions
diff --git a/Game/Code/Classes/UPlatformMacOSX.pas b/Game/Code/Classes/UPlatformMacOSX.pas
index 97c32fe3..30a2ab47 100644
--- a/Game/Code/Classes/UPlatformMacOSX.pas
+++ b/Game/Code/Classes/UPlatformMacOSX.pas
@@ -15,17 +15,13 @@ type
TPlatformMacOSX = class( TInterfacedObject, IPlatform)
private
public
-<<<<<<< .mine
Function DirectoryFindFiles(Dir, Filter : WideString; ReturnAllSubDirs : Boolean) : TDirectoryEntryArray; override;
function GetGamePath: WideString; override;
function TerminateIfAlreadyRunning(var WndTitle : String) : Boolean;
procedure halt();
-=======
- function DirectoryFindFiles(Dir, Filter : WideString; ReturnAllSubDirs : Boolean) : TDirectoryEntryArray; override;
- function GetLogPath : WideString; override;
- function GetGameSharedPath : WideString; override;
- function GetGameUserPath : WideString; override;
->>>>>>> .r788
+ function GetLogPath : WideString; override;
+ function GetGameSharedPath : WideString; override;
+ function GetGameUserPath : WideString; override;
end;
implementation
@@ -52,6 +48,7 @@ end;
function TPlatformMacOSX.GetLogPath : WideString;
begin
+ // surly logs go in /var/log/ ???
Result := GetBundlePath;
end;
@@ -62,6 +59,8 @@ end;
function TPlatformMacOSX.GetGameUserPath : WideString;
begin
+ // is there no user profile ???
+ // like ... /home/user/ that could be used for song locations etc ??
Result := GetBundlePath;
end;