From 488c2e0fe526a1fd5045fb546f7ace220c488085 Mon Sep 17 00:00:00 2001 From: brunzelchen Date: Mon, 16 May 2011 18:04:45 +0000 Subject: - 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 --- Game/Code/Screens/UScreenSong.pas | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Game/Code/Screens') 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); -- cgit v1.2.3