diff options
author | whiteshark0 <whiteshark0@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2007-03-25 10:41:53 +0000 |
---|---|---|
committer | whiteshark0 <whiteshark0@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2007-03-25 10:41:53 +0000 |
commit | 60521ca33e23a91f2ea8aecf506b9aa5e6bda54a (patch) | |
tree | 1bff46c68b16a90a753905b720be6f7908056db7 /Game/Code/Classes | |
parent | baa7e70626941c6c64e5370bdad3b89340c63ffb (diff) | |
download | usdx-60521ca33e23a91f2ea8aecf506b9aa5e6bda54a.tar.gz usdx-60521ca33e23a91f2ea8aecf506b9aa5e6bda54a.tar.xz usdx-60521ca33e23a91f2ea8aecf506b9aa5e6bda54a.zip |
2 Bugs in Cover Positions fixed:
Style4 (Classic): Positions now Readed from Theme, No Overlapping
Style5 (Deluxe): correct Positions of Covers in the Front
No Cut from Last to First
Todo: Correct Positions of Covers in the back(Now Invisible)
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@32 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'Game/Code/Classes')
-rw-r--r-- | Game/Code/Classes/UThemes.pas | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Game/Code/Classes/UThemes.pas b/Game/Code/Classes/UThemes.pas index 7dbac5a9..1d632073 100644 --- a/Game/Code/Classes/UThemes.pas +++ b/Game/Code/Classes/UThemes.pas @@ -759,11 +759,11 @@ begin //Load Cover Pos and Size from Theme Mod
Song.Cover.X := ThemeIni.ReadInteger('SongCover', 'X', 400);
- Song.Cover.Y := ThemeIni.ReadInteger('SongCover', 'Y', 100);
+ Song.Cover.Y := ThemeIni.ReadInteger('SongCover', 'Y', 140);
Song.Cover.Z := ThemeIni.ReadInteger('SongCover', 'Z', 250);
- Song.Cover.W := ThemeIni.ReadInteger('SongCover', 'W', 200);
+ Song.Cover.W := ThemeIni.ReadInteger('SongCover', 'W', 300);
Song.Cover.H := ThemeIni.ReadInteger('SongCover', 'H', 200);
- Song.Cover.Style := ThemeIni.ReadInteger('SongCover', 'Style', 5);
+ Song.Cover.Style := ThemeIni.ReadInteger('SongCover', 'Style', 4);
Song.Cover.Reflections := (ThemeIni.ReadInteger('SongCover', 'Reflections', 0) = 1);
//Load Cover Pos and Size from Theme Mod End
|