diff options
author | Cameron Cawley | 2019-05-01 16:43:04 +0100 |
---|---|---|
committer | Cameron Cawley | 2019-05-01 16:43:04 +0100 |
commit | 68e700ea54b25084f4e7929746f1379865d754bd (patch) | |
tree | aee5084b3a63d36bfb6822517b386ba3feca6aea /backends/platform/sdl | |
parent | 67908559167844a1a207d1544dfcdbd8f8ca1260 (diff) | |
download | scummvm-rg350-68e700ea54b25084f4e7929746f1379865d754bd.tar.gz scummvm-rg350-68e700ea54b25084f4e7929746f1379865d754bd.tar.bz2 scummvm-rg350-68e700ea54b25084f4e7929746f1379865d754bd.zip |
PSP2: Fix warning
Diffstat (limited to 'backends/platform/sdl')
-rw-r--r-- | backends/platform/sdl/psp2/psp2.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/backends/platform/sdl/psp2/psp2.cpp b/backends/platform/sdl/psp2/psp2.cpp index 28b0edf263..6919343001 100644 --- a/backends/platform/sdl/psp2/psp2.cpp +++ b/backends/platform/sdl/psp2/psp2.cpp @@ -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) { |