From 57a85733c562b5dc5c3e88437613d27f426e1e8b Mon Sep 17 00:00:00 2001 From: tobigun Date: Tue, 19 Feb 2008 00:36:31 +0000 Subject: added missing ";" git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@859 b956fd51-792f-4845-bead-9b4dfca2ff2c --- Game/Code/Classes/UPlatformLinux.pas | 6 +++--- 1 file 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} -- cgit v1.2.3