BACKENDS: drop setDefaultFeatureState() usage, it's not needed

This commit is contained in:
Paweł Kołodziejski 2020-10-16 20:17:29 +02:00
parent 1178c5567f
commit bb388295a4
4 changed files with 1 additions and 13 deletions

View file

@ -400,6 +400,7 @@ void initGraphics3d(int width, int height) {
g_system->setGraphicsMode(0, OSystem::kGfxModeRender3d);
g_system->initSize(width, height);
g_system->setFeatureState(OSystem::kFeatureFullscreenMode, ConfMan.getBool("fullscreen")); // TODO: Replace this with initCommonGFX()
g_system->setFeatureState(OSystem::kFeatureAspectRatioCorrection, ConfMan.getBool("aspect_ratio")); // TODO: Replace this with initCommonGFX()
g_system->endGFXTransaction();
}