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/UPliki.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/UPliki.pas')
-rw-r--r-- | Game/Code/Classes/UPliki.pas | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Game/Code/Classes/UPliki.pas b/Game/Code/Classes/UPliki.pas index f4e8ff97..81fdf5bf 100644 --- a/Game/Code/Classes/UPliki.pas +++ b/Game/Code/Classes/UPliki.pas @@ -37,6 +37,7 @@ var MultBPM: integer;
implementation
+
uses TextGL, UIni, UMain, math;
procedure InitializePaths;
@@ -49,12 +50,10 @@ begin ScreenshotsPath := GamePath + 'Screenshots\';
CoversPath := GamePath + 'Covers\';
LanguagesPath := GamePath + 'Languages\';
- //Modi Loader
- PluginPath := GamePath + 'Plugins\';
+ //Modi Loader
+ PluginPath := GamePath + 'Plugins\';
PlaylistPath := GamePath + 'Playlists\';
-
- DecimalSeparator := ',';
end;
function ReadHeader(var Song: TSong): boolean;
|