PSP2: Fix warning

This commit is contained in:
Cameron Cawley 2019-05-01 16:43:04 +01:00
parent 6790855916
commit 68e700ea54

View File

@ -142,8 +142,10 @@ void OSystem_PSP2::setFeatureState(Feature f, bool enable) {
case kFeatureTouchpadMode:
ConfMan.setBool("touchpad_mouse_mode", enable);
break;
default:
OSystem_SDL::setFeatureState(f, enable);
break;
}
OSystem_SDL::setFeatureState(f, enable);
}
bool OSystem_PSP2::getFeatureState(Feature f) {