diff options
| author | 2008-07-24 09:07:49 +0000 | |
|---|---|---|
| committer | 2008-07-24 09:07:49 +0000 | |
| commit | 7a14f21c1512a716aa5dd4096c5c4544523706f6 (patch) | |
| tree | 53e525aca08ccb6363c209e47cf8e212a84c72c6 /src/osd | |
| parent | 4900606a620983609f34f90d6c85d1372948100f (diff) | |
Cleanups and version bump.mame0126u2
Diffstat (limited to 'src/osd')
| -rw-r--r-- | src/osd/windows/debugwin.c | 2 | ||||
| -rw-r--r-- | src/osd/windows/input.c | 2 |
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) |
