mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-18 16:03:05 +00:00
COMMON: Remove trailing whitespace
This commit is contained in:
parent
d2c69a79fe
commit
daf110c867
@ -45,7 +45,7 @@ List<Event> DefaultEventMapper::mapEvent(const Event &ev, EventSource *source) {
|
||||
if (ev.type == EVENT_MBUTTONUP) {
|
||||
if ((g_system->getMillis() - vkeybdThen) >= vkeybdTime) {
|
||||
mappedEvent.type = EVENT_VIRTUAL_KEYBOARD;
|
||||
|
||||
|
||||
// Avoid blocking event from engine.
|
||||
addDelayedEvent(100, ev);
|
||||
}
|
||||
@ -59,7 +59,7 @@ List<Event> DefaultEventMapper::mapEvent(const Event &ev, EventSource *source) {
|
||||
#ifdef ENABLE_VKEYBD
|
||||
else if (ev.kbd.hasFlags(KBD_CTRL) && ev.kbd.keycode == KEYCODE_F7) {
|
||||
mappedEvent.type = EVENT_VIRTUAL_KEYBOARD;
|
||||
|
||||
|
||||
// Avoid blocking CTRL-F7 events from engine.
|
||||
addDelayedEvent(100, ev);
|
||||
}
|
||||
@ -67,7 +67,7 @@ List<Event> DefaultEventMapper::mapEvent(const Event &ev, EventSource *source) {
|
||||
#ifdef ENABLE_KEYMAPPER
|
||||
else if (ev.kbd.hasFlags(KBD_CTRL) && ev.kbd.keycode == KEYCODE_F8) {
|
||||
mappedEvent.type = EVENT_KEYMAPPER_REMAP;
|
||||
|
||||
|
||||
// Avoid blocking CTRL-F8 events from engine.
|
||||
addDelayedEvent(100, ev);
|
||||
}
|
||||
|
@ -148,7 +148,7 @@
|
||||
#endif
|
||||
#endif
|
||||
|
||||
// The following math constants are usually defined by the system math.h header, but
|
||||
// The following math constants are usually defined by the system math.h header, but
|
||||
// they are not part of the ANSI C++ standards and so can NOT be relied upon to be
|
||||
// present i.e. when -std=c++11 is passed to GCC, enabling strict ANSI compliance.
|
||||
// As we rely on these being present, we define them if they are not set.
|
||||
|
Loading…
x
Reference in New Issue
Block a user