diff options
author | 2011-05-30 19:07:19 +0000 | |
---|---|---|
committer | 2011-05-30 19:07:19 +0000 | |
commit | 665d213ee424496f94702f3643c69b3d85129556 (patch) | |
tree | 45bfdcb86bf3950084fc54d512827331d4e48934 /src/emu/emu.h | |
parent | 8f7d456e70ae1caeda6f5573bd2e7d93e26cec9e (diff) |
(Finally found the time to finish this....)
Low-level input upgrade. Classes now exist for input_codes, input_items,
input_devices, and input_seqs. Also created an input_manager class to
hold machine-global state and made it accessible via machine.input().
Expanded the device index range (0-255, up from 0-16), and the OSD can
now specify the device index explicitly if they can better keep the
indexes from varying run-to-run. [Aaron Giles]
Note that I've built and run SDL on Windows, but not all the code paths
were exercised. If you use mice/joysticks extensively double-check them
to be sure it all still works as expected.
This is mainly an OSD and core change. The only thing impacting drivers
is if they query for specific keys for debugging. The following S&Rs
took care of most of that:
S: input_code_pressed( *)\(( *)([^, ]+) *, *
R: \3\.input\(\)\.code_pressed\1\(\2
S: input_code_pressed_once( *)\(( *)([^, ]+) *, *
R: \3\.input\(\)\.code_pressed_once\1\(\2
Diffstat (limited to 'src/emu/emu.h')
-rw-r--r-- | src/emu/emu.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/emu/emu.h b/src/emu/emu.h index 5364a0c350a..33d2897ace4 100644 --- a/src/emu/emu.h +++ b/src/emu/emu.h @@ -81,7 +81,6 @@ typedef device_t * (*machine_config_constructor)(machine_config &config, device_ // I/O #include "input.h" -#include "inputseq.h" #include "inptport.h" #include "output.h" |