diff options
author | 2019-05-13 19:12:11 +0200 | |
---|---|---|
committer | 2019-05-13 19:12:23 +0200 | |
commit | 582b9e279f2314b2c247290b23a6fb4c640576b6 (patch) | |
tree | 8104ae9f80db5eeafd6c5e35840d875d3e7b5c7c /src/devices/bus/vcs_ctrl/ctrl.cpp | |
parent | 88190884b6dd60e5b339c9787f994a426b1e4c21 (diff) |
c64: added mouse controller (nw)
Diffstat (limited to 'src/devices/bus/vcs_ctrl/ctrl.cpp')
-rw-r--r-- | src/devices/bus/vcs_ctrl/ctrl.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/devices/bus/vcs_ctrl/ctrl.cpp b/src/devices/bus/vcs_ctrl/ctrl.cpp index c4f735aacb6..57cdad8f4ba 100644 --- a/src/devices/bus/vcs_ctrl/ctrl.cpp +++ b/src/devices/bus/vcs_ctrl/ctrl.cpp @@ -71,6 +71,7 @@ void vcs_control_port_device::device_start() #include "joystick.h" #include "keypad.h" #include "lightpen.h" +#include "mouse.h" #include "paddles.h" #include "wheel.h" @@ -78,6 +79,7 @@ void vcs_control_port_devices(device_slot_interface &device) { device.option_add("joy", VCS_JOYSTICK); device.option_add("pad", VCS_PADDLES); + device.option_add("mouse", VCS_MOUSE); device.option_add("lp", VCS_LIGHTPEN); device.option_add("joybstr", VCS_JOYSTICK_BOOSTER); device.option_add("wheel", VCS_WHEEL); |