aboutsummaryrefslogtreecommitdiffstats
path: root/src/classes/UPlatformLinux.pas
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/classes/UPlatformLinux.pas6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/classes/UPlatformLinux.pas b/src/classes/UPlatformLinux.pas
index 27fb130e..19361a22 100644
--- a/src/classes/UPlatformLinux.pas
+++ b/src/classes/UPlatformLinux.pas
@@ -90,7 +90,7 @@ begin
{$IFDEF UseLocalDirs}
Result := ExtractFilePath(ParamStr(0));
{$ELSE}
- Result := GetGameUserPath() + 'logs' + PathDelim;
+ Result := GetGameUserPath() + 'logs/';
{$ENDIF}
end;
@@ -107,7 +107,7 @@ begin
{$IFDEF UseLocalDirs}
Result := ExtractFilePath(ParamStr(0));
{$ELSE}
- Result := SharedPath + PathDelim;
+ Result := IncludeTrailingPathDelimiter(INSTALL_DATADIR);
{$ENDIF}
end;
end;
@@ -121,7 +121,7 @@ begin
{$IFDEF UseLocalDirs}
Result := ExtractFilePath(ParamStr(0));
{$ELSE}
- Result := GetHomeDir() + '.'+PathSuffix + PathDelim;
+ Result := GetHomeDir() + '.ultrastardx/';
{$ENDIF}
end;
end;