diff options
author | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-09-01 23:46:53 +0000 |
---|---|---|
committer | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-09-01 23:46:53 +0000 |
commit | fded3a5ed753bd0fff77fb73ab9abcd8ad715e59 (patch) | |
tree | 4e750091c9d2ddd389ea77d5d547f325a204cd53 /src/classes | |
parent | e91cea0605045951a3df208d73d93026fef31e8f (diff) | |
download | usdx-fded3a5ed753bd0fff77fb73ab9abcd8ad715e59.tar.gz usdx-fded3a5ed753bd0fff77fb73ab9abcd8ad715e59.tar.xz usdx-fded3a5ed753bd0fff77fb73ab9abcd8ad715e59.zip |
- suffix configure option removed
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1337 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'src/classes')
-rw-r--r-- | src/classes/UPlatformLinux.pas | 6 |
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; |