diff options
author | jaybinks <jaybinks@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-03-04 11:16:38 +0000 |
---|---|---|
committer | jaybinks <jaybinks@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-03-04 11:16:38 +0000 |
commit | 9a36ddf60248b9fabe61d21f7237c5cd187c4c7a (patch) | |
tree | 5cfc1e8e8bf148f69f3d226d035f10cc38e25fc1 /Game/Code/Classes/UMain.pas | |
parent | 37cc5e26505c441d3de151fbe1a70f7d01f085e0 (diff) | |
download | usdx-9a36ddf60248b9fabe61d21f7237c5cd187c4c7a.tar.gz usdx-9a36ddf60248b9fabe61d21f7237c5cd187c4c7a.tar.xz usdx-9a36ddf60248b9fabe61d21f7237c5cd187c4c7a.zip |
removed overuse of DecimalSeperator
and re-implemented changes from changset#905
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@906 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'Game/Code/Classes/UMain.pas')
-rw-r--r-- | Game/Code/Classes/UMain.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Game/Code/Classes/UMain.pas b/Game/Code/Classes/UMain.pas index 66c8efe9..2d744a4f 100644 --- a/Game/Code/Classes/UMain.pas +++ b/Game/Code/Classes/UMain.pas @@ -1143,7 +1143,7 @@ begin initialize_path( CoversPath , Platform.GetGameSharedPath + 'Covers' + PathDelim );
initialize_path( PlaylistPath , Platform.GetGameSharedPath + 'Playlists' + PathDelim );
- DecimalSeparator := ',';
+ DecimalSeparator := '.';
end;
end.
|