videosettings: rename setVideoSettings() -> initVideoSettings()

It was not a setter, no values will be passed.
This commit is contained in:
2021-10-22 14:44:53 +02:00
parent 44f965f8fd
commit 73778cfb34
3 changed files with 3 additions and 3 deletions

View File

@@ -594,7 +594,7 @@ int CVideoSettings::showVideoSetup()
return res;
}
void CVideoSettings::setVideoSettings()
void CVideoSettings::initVideoSettings()
{
dprintf(DEBUG_NORMAL, "[CVideoSettings] [%s - %d], init video settings...\n", __func__, __LINE__);
#if 0

View File

@@ -60,7 +60,7 @@ public:
void next43Mode();
void SwitchFormat();
void setVideoSettings();
void initVideoSettings();
void setupVideoSystem(bool do_ask);
void setWizardMode(int mode) {is_wizard = mode;};

View File

@@ -3085,7 +3085,7 @@ TIMER_START();
//init video settings
g_videoSettings = new CVideoSettings;
g_videoSettings->setVideoSettings();
g_videoSettings->initVideoSettings();
// reset videodecoder to fullscreen
videoDecoder->Pig(-1, -1, -1, -1);