diff options
Diffstat (limited to 'Game/Code/Screens')
-rw-r--r-- | Game/Code/Screens/UScreenSong.pas | 5 |
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); |