aboutsummaryrefslogtreecommitdiffstats
path: root/Game/Code/Screens/UScreenScore.pas
diff options
context:
space:
mode:
authormogguh <mogguh@b956fd51-792f-4845-bead-9b4dfca2ff2c>2008-07-02 13:03:47 +0000
committermogguh <mogguh@b956fd51-792f-4845-bead-9b4dfca2ff2c>2008-07-02 13:03:47 +0000
commit955de6842fb816daee68b38ac06c51f579e0b8ed (patch)
tree65740b9870d2fd409aed626f5b4dd28bc0fb98ed /Game/Code/Screens/UScreenScore.pas
parent94b9441d2ec4fba0c65a25296f3693b727eea799 (diff)
downloadusdx-955de6842fb816daee68b38ac06c51f579e0b8ed.tar.gz
usdx-955de6842fb816daee68b38ac06c51f579e0b8ed.tar.xz
usdx-955de6842fb816daee68b38ac06c51f579e0b8ed.zip
Fixed a conditional, that caused ratings not to show up
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1159 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r--Game/Code/Screens/UScreenScore.pas2
1 files changed, 1 insertions, 1 deletions
diff --git a/Game/Code/Screens/UScreenScore.pas b/Game/Code/Screens/UScreenScore.pas
index 49292fd2..9f177c5b 100644
--- a/Game/Code/Screens/UScreenScore.pas
+++ b/Game/Code/Screens/UScreenScore.pas
@@ -471,7 +471,7 @@ begin
Text[TextTotal[ThemeIndex]].Alpha := (BarScore_EaseOut_Step / 100);
- if(BarGolden_EaseOut_Step > 100) then
+ if(BarGolden_EaseOut_Step = 100) then
begin
ShowRating(PlayerNumber);
end;