Skip to content

Commit

Permalink
COMMON: Remove trailing whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
bluegr committed Oct 28, 2014
1 parent d2c69a7 commit daf110c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions common/EventMapper.cpp
Expand Up @@ -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);
}
Expand All @@ -59,15 +59,15 @@ 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);
}
#endif
#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);
}
Expand Down
2 changes: 1 addition & 1 deletion common/scummsys.h
Expand Up @@ -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.
Expand Down

0 comments on commit daf110c

Please sign in to comment.