disable banner loading setting; not used at the moment
This commit is contained in:
@@ -32,7 +32,7 @@ enum {
|
|||||||
GO_REFRESH_RATE,
|
GO_REFRESH_RATE,
|
||||||
GO_MOVIEDECODEMS,
|
GO_MOVIEDECODEMS,
|
||||||
GO_VSYNC,
|
GO_VSYNC,
|
||||||
GO_PRELOAD_BANNERS,
|
// GO_PRELOAD_BANNERS,
|
||||||
NUM_GRAPHIC_OPTIONS_LINES
|
NUM_GRAPHIC_OPTIONS_LINES
|
||||||
};
|
};
|
||||||
OptionRow g_GraphicOptionsLines[NUM_GRAPHIC_OPTIONS_LINES] = {
|
OptionRow g_GraphicOptionsLines[NUM_GRAPHIC_OPTIONS_LINES] = {
|
||||||
@@ -45,7 +45,7 @@ OptionRow g_GraphicOptionsLines[NUM_GRAPHIC_OPTIONS_LINES] = {
|
|||||||
OptionRow( "Refresh\nRate", "DEFAULT","60","70","72","75","80","85","90","100","120","150" ),
|
OptionRow( "Refresh\nRate", "DEFAULT","60","70","72","75","80","85","90","100","120","150" ),
|
||||||
OptionRow( "Movie\nDecode", "1ms","2ms","3ms","4ms" ),
|
OptionRow( "Movie\nDecode", "1ms","2ms","3ms","4ms" ),
|
||||||
OptionRow( "Wait For\nVsync", "NO", "YES" ),
|
OptionRow( "Wait For\nVsync", "NO", "YES" ),
|
||||||
OptionRow( "Banner\nLoading", "ON DEMAND", "ALL", "GROUP" ),
|
// OptionRow( "Banner\nLoading", "ON DEMAND", "ALL", "GROUP" ),
|
||||||
};
|
};
|
||||||
|
|
||||||
static const int HorizRes[] = {
|
static const int HorizRes[] = {
|
||||||
@@ -124,7 +124,7 @@ void ScreenGraphicOptions::ImportOptions()
|
|||||||
|
|
||||||
m_iSelectedOption[0][GO_MOVIEDECODEMS] = PREFSMAN->m_iMovieDecodeMS-1;
|
m_iSelectedOption[0][GO_MOVIEDECODEMS] = PREFSMAN->m_iMovieDecodeMS-1;
|
||||||
m_iSelectedOption[0][GO_VSYNC] = PREFSMAN->m_bVsync ? 1:0;
|
m_iSelectedOption[0][GO_VSYNC] = PREFSMAN->m_bVsync ? 1:0;
|
||||||
m_iSelectedOption[0][GO_PRELOAD_BANNERS] = PREFSMAN->m_BannerCacheType;
|
// m_iSelectedOption[0][GO_PRELOAD_BANNERS] = PREFSMAN->m_BannerCacheType;
|
||||||
}
|
}
|
||||||
|
|
||||||
void ScreenGraphicOptions::ExportOptions()
|
void ScreenGraphicOptions::ExportOptions()
|
||||||
@@ -167,7 +167,7 @@ void ScreenGraphicOptions::ExportOptions()
|
|||||||
|
|
||||||
PREFSMAN->m_iMovieDecodeMS = m_iSelectedOption[0][GO_MOVIEDECODEMS]+1;
|
PREFSMAN->m_iMovieDecodeMS = m_iSelectedOption[0][GO_MOVIEDECODEMS]+1;
|
||||||
PREFSMAN->m_bVsync = m_iSelectedOption[0][GO_VSYNC] == 1;
|
PREFSMAN->m_bVsync = m_iSelectedOption[0][GO_VSYNC] == 1;
|
||||||
PREFSMAN->m_BannerCacheType = (PrefsManager::BannerCacheType) m_iSelectedOption[0][GO_PRELOAD_BANNERS];
|
// PREFSMAN->m_BannerCacheType = (PrefsManager::BannerCacheType) m_iSelectedOption[0][GO_PRELOAD_BANNERS];
|
||||||
}
|
}
|
||||||
|
|
||||||
void ScreenGraphicOptions::GoToPrevState()
|
void ScreenGraphicOptions::GoToPrevState()
|
||||||
|
|||||||
Reference in New Issue
Block a user