diff options
author | 2010-02-14 16:59:22 +0000 | |
---|---|---|
committer | 2010-02-14 16:59:22 +0000 | |
commit | 6b663f66a75dc2a832262b55d1e450b89d1da464 (patch) | |
tree | 03a43c78c4e6a5e36df68dfe7385326a3601189f /src/emu/ui.c | |
parent | 535a84c908f8bdb6475d4ec548639701fd01dd11 (diff) |
Cleanups and version bump.mame0136u3
Diffstat (limited to 'src/emu/ui.c')
-rw-r--r-- | src/emu/ui.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/ui.c b/src/emu/ui.c index c6df5d95e79..f34daaf8c6f 100644 --- a/src/emu/ui.c +++ b/src/emu/ui.c @@ -125,7 +125,7 @@ static slider_state *slider_current; static int ui_active; /* natural keyboard info */ static int ui_use_natural_keyboard; -static UINT8 non_char_keys_down[(ARRAY_LENGTH(non_char_keys) + 7) / 8]; +static UINT8 non_char_keys_down[(ARRAY_LENGTH(non_char_keys) + 7) / 8]; /*************************************************************************** @@ -254,11 +254,11 @@ int ui_init(running_machine *machine) /* reset globals */ single_step = FALSE; - ui_set_handler(handler_messagebox, 0); + ui_set_handler(handler_messagebox, 0); ui_active = 0; /* retrieve options */ ui_use_natural_keyboard = options_get_bool(mame_options(), OPTION_NATURAL_KEYBOARD); - + return 0; } |