aboutsummaryrefslogtreecommitdiffstats
path: root/Game/Code/Screens
diff options
context:
space:
mode:
authorbrunzelchen <brunzelchen@b956fd51-792f-4845-bead-9b4dfca2ff2c>2011-05-16 18:04:45 +0000
committerbrunzelchen <brunzelchen@b956fd51-792f-4845-bead-9b4dfca2ff2c>2011-05-16 18:04:45 +0000
commit488c2e0fe526a1fd5045fb546f7ace220c488085 (patch)
tree6b05b4cffea71ed1eba0ed55e6de00e2a9d6d484 /Game/Code/Screens
parent7c402fd3ad326fe356467412f75541e4912b5087 (diff)
downloadusdx-488c2e0fe526a1fd5045fb546f7ace220c488085.tar.gz
usdx-488c2e0fe526a1fd5045fb546f7ace220c488085.tar.xz
usdx-488c2e0fe526a1fd5045fb546f7ace220c488085.zip
- new option: song quality check on/off
- exclude freestyle notes on song check - added quality factors in config.ini git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/1.0.1 Challenge MOD@2831 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'Game/Code/Screens')
-rw-r--r--Game/Code/Screens/UScreenSong.pas5
1 files changed, 3 insertions, 2 deletions
diff --git a/Game/Code/Screens/UScreenSong.pas b/Game/Code/Screens/UScreenSong.pas
index 9b811a62..0483284e 100644
--- a/Game/Code/Screens/UScreenSong.pas
+++ b/Game/Code/Screens/UScreenSong.pas
@@ -520,7 +520,7 @@ begin
SDLK_I:
begin
- if (Mode = smNormal) then
+ if (Mode = smNormal) and (Ini.EnableQualityCheck = 1) then
ShowSongQuality := not ShowSongQuality;
end;
@@ -2691,7 +2691,8 @@ begin
DrawExtensions;
// Song Quality
- if ShowSongQuality and not CatSongs.Song[Interaction].Main then
+ if ShowSongQuality and (TargetVidVis = windowed) and (VidVis = windowed)
+ and not CatSongs.Song[Interaction].Main then
begin
SetFontStyle(0);
SetFontItalic(false);