remove m_bUseBGIfNoBanner and m_BannerCacheType

This commit is contained in:
Glenn Maynard
2003-06-23 08:39:34 +00:00
parent dc575db261
commit a026a7d9f6
8 changed files with 0 additions and 41 deletions
-4
View File
@@ -24,7 +24,6 @@
enum {
GO_BGIFNOBANNER,
GO_SOLO_SINGLE,
GO_HIDDEN_SONGS,
GO_EASTER_EGGS,
@@ -35,7 +34,6 @@ enum {
};
OptionRow g_GameplayOptionsLines[NUM_GAMEPLAY_OPTIONS_LINES] = {
OptionRow( "BG For\nBanner", "NO", "YES (slow)" ),
OptionRow( "Solo\nSingles", "OFF","ON" ),
OptionRow( "Hidden\nSongs", "OFF","ON" ),
OptionRow( "Easter\nEggs", "OFF","ON" ),
@@ -61,7 +59,6 @@ ScreenGameplayOptions::ScreenGameplayOptions() :
void ScreenGameplayOptions::ImportOptions()
{
m_iSelectedOption[0][GO_BGIFNOBANNER] = PREFSMAN->m_bUseBGIfNoBanner ? 1:0;
m_iSelectedOption[0][GO_SOLO_SINGLE] = PREFSMAN->m_bSoloSingle ? 1:0;
m_iSelectedOption[0][GO_HIDDEN_SONGS] = PREFSMAN->m_bHiddenSongs ? 1:0;
m_iSelectedOption[0][GO_EASTER_EGGS] = PREFSMAN->m_bEasterEggs ? 1:0;
@@ -72,7 +69,6 @@ void ScreenGameplayOptions::ImportOptions()
void ScreenGameplayOptions::ExportOptions()
{
PREFSMAN->m_bUseBGIfNoBanner = m_iSelectedOption[0][GO_BGIFNOBANNER] == 1;
PREFSMAN->m_bSoloSingle = m_iSelectedOption[0][GO_SOLO_SINGLE] == 1;
PREFSMAN->m_bHiddenSongs = m_iSelectedOption[0][GO_HIDDEN_SONGS] == 1;
PREFSMAN->m_bEasterEggs = m_iSelectedOption[0][GO_EASTER_EGGS] == 1;