aboutsummaryrefslogtreecommitdiffstats
path: root/Game/Code/Classes
diff options
context:
space:
mode:
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;