summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd
diff options
context:
space:
mode:
Diffstat (limited to 'src/osd')
-rw-r--r--src/osd/windows/debugwin.c2
-rw-r--r--src/osd/windows/input.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/osd/windows/debugwin.c b/src/osd/windows/debugwin.c
index cb74ec0152a..60a64c11569 100644
--- a/src/osd/windows/debugwin.c
+++ b/src/osd/windows/debugwin.c
@@ -344,7 +344,7 @@ int debugwin_seq_pressed(void)
{
int vkey = wininput_vkey_for_mame_code(code);
int pressed = (vkey != 0 && (GetAsyncKeyState(vkey) & 0x8000) != 0);
-
+
// if this is the first in the sequence, result is set equal
if (first)
result = pressed ^ invert;
diff --git a/src/osd/windows/input.c b/src/osd/windows/input.c
index 38fc605f296..1d2c48141c6 100644
--- a/src/osd/windows/input.c
+++ b/src/osd/windows/input.c
@@ -709,7 +709,7 @@ int wininput_vkey_for_mame_code(input_code code)
{
input_item_id id = INPUT_CODE_ITEMID(code);
int tablenum;
-
+
// scan the table for a match
for (tablenum = 0; tablenum < ARRAY_LENGTH(win_key_trans_table); tablenum++)
if (win_key_trans_table[tablenum][MAME_KEY] == id)