Skip to content

Commit

Permalink
dont load fadedbanners if the banner actor is not visible
Browse files Browse the repository at this point in the history
  • Loading branch information
MinaciousGrace committed Nov 21, 2018
1 parent 3736163 commit 20cd6fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ScreenSelectMusic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1571,7 +1571,7 @@ ScreenSelectMusic::AfterMusicChange()
g_sCDTitlePath = "";
g_sBannerPath = "";
g_bWantFallbackCdTitle = false;
bool bWantBanner = true;
bool bWantBanner = true &&m_Banner.GetVisible();

static SortOrder s_lastSortOrder = SortOrder_Invalid;
if (GAMESTATE->m_SortOrder != s_lastSortOrder) {
Expand Down

0 comments on commit 20cd6fb

Please sign in to comment.