diff options
author | whiteshark0 <whiteshark0@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2007-07-09 16:42:38 +0000 |
---|---|---|
committer | whiteshark0 <whiteshark0@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2007-07-09 16:42:38 +0000 |
commit | a1612bc4ad4ebbfe166ce8006012b6cac4c0abf3 (patch) | |
tree | 875fd08e0d899f416547e47d8a80df70e1f1149b | |
parent | e8ff96a8c44e152a2cb7b71579249c15a10f4168 (diff) | |
download | usdx-a1612bc4ad4ebbfe166ce8006012b6cac4c0abf3.tar.gz usdx-a1612bc4ad4ebbfe166ce8006012b6cac4c0abf3.tar.xz usdx-a1612bc4ad4ebbfe166ce8006012b6cac4c0abf3.zip |
Fixed Bug in Stat Main: Categorys was counted as Songs
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@283 b956fd51-792f-4845-bead-9b4dfca2ff2c
-rw-r--r-- | Game/Code/Screens/UScreenStatMain.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Game/Code/Screens/UScreenStatMain.pas b/Game/Code/Screens/UScreenStatMain.pas index 54457a6e..b3907d41 100644 --- a/Game/Code/Screens/UScreenStatMain.pas +++ b/Game/Code/Screens/UScreenStatMain.pas @@ -170,7 +170,7 @@ begin %2:d Count of UnSung Songs
%3:d Count of Songs with Video (A3)
%4:s Name of the most popular Song}
- A1 := Length(CatSongs.Song);
+ A1 := Length(Songs.Song);
A2 := Database.GetTotalEntrys(2);
A3 := SongswithVid;
|