SDL: Remove unnecessary overrides of setFeatureState() and getFeatureState()

This commit is contained in:
Cameron Cawley 2020-03-11 20:20:33 +00:00 committed by Eugene Sandulenko
parent 205175c4e5
commit a5b6a577de
9 changed files with 0 additions and 94 deletions

View file

@ -110,8 +110,6 @@ void OSystem_ANDROIDSDL::setFeatureState(Feature f, bool enable) {
ConfMan.setBool("swap_menu_and_back_buttons", enable);
swapMenuAndBackButtons(enable);
break;
case kFeatureFullscreenMode:
break;
default:
OSystem_POSIX::setFeatureState(f, enable);
break;
@ -129,9 +127,6 @@ bool OSystem_ANDROIDSDL::getFeatureState(Feature f) {
case kFeatureSwapMenuAndBackButtons:
return ConfMan.getBool("swap_menu_and_back_buttons");
break;
case kFeatureFullscreenMode:
return true;
break;
default:
return OSystem_POSIX::getFeatureState(f);
break;