diff options
author | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-02-19 00:36:31 +0000 |
---|---|---|
committer | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-02-19 00:36:31 +0000 |
commit | 57a85733c562b5dc5c3e88437613d27f426e1e8b (patch) | |
tree | 0abc1cf691198e7e0e6927fd275a28b0c1c27a3b /Game/Code/Classes | |
parent | f447c5f82128e83c84b4abf213e8abfa1aae0493 (diff) | |
download | usdx-57a85733c562b5dc5c3e88437613d27f426e1e8b.tar.gz usdx-57a85733c562b5dc5c3e88437613d27f426e1e8b.tar.xz usdx-57a85733c562b5dc5c3e88437613d27f426e1e8b.zip |
added missing ";"
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@859 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'Game/Code/Classes')
-rw-r--r-- | Game/Code/Classes/UPlatformLinux.pas | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Game/Code/Classes/UPlatformLinux.pas b/Game/Code/Classes/UPlatformLinux.pas index 0883b0f8..b005c8d9 100644 --- a/Game/Code/Classes/UPlatformLinux.pas +++ b/Game/Code/Classes/UPlatformLinux.pas @@ -139,7 +139,7 @@ begin result := ExtractFilePath(ParamStr(0)) else {$IFDEF UseLocalDirs} - result := ExtractFilePath(ParamStr(0)) + result := ExtractFilePath(ParamStr(0)); {$ELSE} result := LogPath+'/'; {$ENDIF} @@ -154,7 +154,7 @@ begin result := ExtractFilePath(ParamStr(0)) else {$IFDEF UseLocalDirs} - result := ExtractFilePath(ParamStr(0)) + result := ExtractFilePath(ParamStr(0)); {$ELSE} result := SharedPath+'/'; {$ENDIF} @@ -166,7 +166,7 @@ begin result := ExtractFilePath(ParamStr(0)) else {$IFDEF UseLocalDirs} - result := ExtractFilePath(ParamStr(0)) + result := ExtractFilePath(ParamStr(0)); {$ELSE} result := get_homedir()+'/.'+PathSuffix+'/'; {$ENDIF} |