diff options
author | whiteshark0 <whiteshark0@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2009-12-13 13:32:09 +0000 |
---|---|---|
committer | whiteshark0 <whiteshark0@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2009-12-13 13:32:09 +0000 |
commit | 46e4f20c37be63c326b9ac798c656c266301d5b0 (patch) | |
tree | e49952b531ea46acc3043620b5f1a3cd1ecf0799 /src/screens | |
parent | bc2e9999248beb57e85d3ae9d0f154eb1c3c1c52 (diff) | |
download | usdx-46e4f20c37be63c326b9ac798c656c266301d5b0.tar.gz usdx-46e4f20c37be63c326b9ac798c656c266301d5b0.tar.xz usdx-46e4f20c37be63c326b9ac798c656c266301d5b0.zip |
fixed score display with linebonus=off
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@2026 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'src/screens')
-rw-r--r-- | src/screens/UScreenSing.pas | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/screens/UScreenSing.pas b/src/screens/UScreenSing.pas index 342abac1..20f3b15e 100644 --- a/src/screens/UScreenSing.pas +++ b/src/screens/UScreenSing.pas @@ -956,7 +956,9 @@ begin // spawn rating pop-up Rating := Round(LinePerfection * MAX_LINE_RATING); Scores.SpawnPopUp(PlayerIndex, Rating, CurrentPlayer.ScoreTotalInt); - end; + end + else + Scores.RaiseScore(PlayerIndex, CurrentPlayer.ScoreTotalInt); // PerfectLineTwinkle (effect), part 1 if (Ini.EffectSing = 1) then |