mirror of
https://github.com/holub/mame
synced 2025-04-17 22:13:04 +03:00
Revert "ui: move decrease frameskip key from F8 to Shift F9"
This reverts commit d88e127143
.
This commit is contained in:
parent
168662c975
commit
c0d7a5c607
@ -159,10 +159,10 @@ and saving/loading save states.
|
||||
similar to the load option above. If an existing save state is present, it
|
||||
will also appear in the selection menu to allow overwriting of that save
|
||||
state.
|
||||
**F8**
|
||||
Decrease frame skipping on the fly.
|
||||
**F9**
|
||||
Increase frame skipping on the fly.
|
||||
**Left Shift+F9**
|
||||
Decrease frame skipping on the fly.
|
||||
**F10**
|
||||
Toggle speed throttling.
|
||||
**F11**
|
||||
|
@ -898,8 +898,8 @@ namespace {
|
||||
INPUT_PORT_DIGITAL_TYPE( 0, UI, UI_RESET_MACHINE, N_p("input-name", "Reset Machine"), input_seq(KEYCODE_F3, KEYCODE_LSHIFT, input_seq::or_code, KEYCODE_F3, KEYCODE_RSHIFT) ) \
|
||||
INPUT_PORT_DIGITAL_TYPE( 0, UI, UI_SOFT_RESET, N_p("input-name", "Soft Reset"), input_seq(KEYCODE_F3, input_seq::not_code, KEYCODE_LSHIFT, input_seq::not_code, KEYCODE_RSHIFT) ) \
|
||||
INPUT_PORT_DIGITAL_TYPE( 0, UI, UI_SHOW_GFX, N_p("input-name", "Show Decoded Graphics"), input_seq(KEYCODE_F4) ) \
|
||||
INPUT_PORT_DIGITAL_TYPE( 0, UI, UI_FRAMESKIP_DEC, N_p("input-name", "Frameskip Dec"), input_seq(KEYCODE_F9, KEYCODE_LSHIFT, input_seq::or_code, KEYCODE_F9, KEYCODE_RSHIFT) ) \
|
||||
INPUT_PORT_DIGITAL_TYPE( 0, UI, UI_FRAMESKIP_INC, N_p("input-name", "Frameskip Inc"), input_seq(KEYCODE_F9, input_seq::not_code, KEYCODE_LSHIFT, input_seq::not_code, KEYCODE_RSHIFT) ) \
|
||||
INPUT_PORT_DIGITAL_TYPE( 0, UI, UI_FRAMESKIP_DEC, N_p("input-name", "Frameskip Dec"), input_seq(KEYCODE_F8) ) \
|
||||
INPUT_PORT_DIGITAL_TYPE( 0, UI, UI_FRAMESKIP_INC, N_p("input-name", "Frameskip Inc"), input_seq(KEYCODE_F9) ) \
|
||||
INPUT_PORT_DIGITAL_TYPE( 0, UI, UI_THROTTLE, N_p("input-name", "Throttle"), input_seq(KEYCODE_F10) ) \
|
||||
INPUT_PORT_DIGITAL_TYPE( 0, UI, UI_FAST_FORWARD, N_p("input-name", "Fast Forward"), input_seq(KEYCODE_INSERT) ) \
|
||||
INPUT_PORT_DIGITAL_TYPE( 0, UI, UI_SHOW_FPS, N_p("input-name", "Show FPS"), input_seq(KEYCODE_F11, input_seq::not_code, KEYCODE_LSHIFT) ) \
|
||||
|
Loading…
Reference in New Issue
Block a user