mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-01 08:23:15 +00:00
KEYMAPPER: Fix Missing Default Switch Case
These are flagged by GCC if -Wswitch-default is enabled.
This commit is contained in:
parent
9712ab0f3d
commit
047545cc1b
@ -141,6 +141,8 @@ bool VirtualMouse::notifyEvent(const Event &event) {
|
||||
case kCustomActionVirtualMouseSlow:
|
||||
_slowModifier = 0.9f * (1.f - event.joystick.position / (float)JOYAXIS_MAX) + 0.1f;
|
||||
return true;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
return false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user