diff options
| author | 2008-06-25 22:17:15 +0000 | |
|---|---|---|
| committer | 2008-06-25 22:17:15 +0000 | |
| commit | 9e2e2fd7765f5fec34671ca9135dd977f153a0cb (patch) | |
| tree | 8a4e8aa8b843ec15b656c9645f8a419f6ec53ec9 | |
| parent | 45034a382bee092c86c7b2b2d7ef90b57d82fe44 (diff) | |
Fixes menu scrolling speed as described by Haze
| -rw-r--r-- | src/emu/cheat.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/emu/cheat.c b/src/emu/cheat.c index 4d3e16a38ba..ca7aeb5e73f 100644 --- a/src/emu/cheat.c +++ b/src/emu/cheat.c @@ -2006,6 +2006,9 @@ void cheat_init(running_machine *machine) edit_cursor = 0; cheat_options = DEFAULT_CHEAT_OPTIONS; driverSpecifiedFlag = 0; + + horizontal_key_repeat_speed = 10; + vertical_key_repeat_speed = 10; full_menu_page_height = visible_items = floor(1.0f / ui_get_line_height()) - 1; |
