summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/nes_ctrl/ctrl.cpp
diff options
context:
space:
mode:
author 0kmg <9137159+0kmg@users.noreply.github.com>2021-11-02 11:46:43 -0800
committer GitHub <noreply@github.com>2021-11-03 06:46:43 +1100
commitdce1fd7dfa91b41b82af90069e133d2a83e86976 (patch)
tree42ddc372db2a2dd7e018d43df62f72d1e48a1263 /src/devices/bus/nes_ctrl/ctrl.cpp
parentfb646fea7906f84e5ad4de95b49e21b5bef6405b (diff)
bus/nes_ctrl: Added emulation for IGS Tap-tap Mat controller. (#8772)
* Refactored Family Trainer and Tap-tap Mat into common base class. Software list items promoted to working (nes.xml) --------------------------------------- Super Mogura Tataki!! Pokkun Moguraa (Japan)
Diffstat (limited to 'src/devices/bus/nes_ctrl/ctrl.cpp')
-rw-r--r--src/devices/bus/nes_ctrl/ctrl.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/devices/bus/nes_ctrl/ctrl.cpp b/src/devices/bus/nes_ctrl/ctrl.cpp
index 991191a1f0c..77f72d6b687 100644
--- a/src/devices/bus/nes_ctrl/ctrl.cpp
+++ b/src/devices/bus/nes_ctrl/ctrl.cpp
@@ -46,8 +46,8 @@
#include "4score.h"
#include "arkpaddle.h"
#include "bcbattle.h"
-#include "ftrainer.h"
#include "fckeybrd.h"
+#include "fcmat.h"
#include "hori.h"
#include "joypad.h"
#include "konamihs.h"
@@ -211,4 +211,5 @@ void fc_expansion_devices(device_slot_interface &device)
device.option_add("hori_4p", NES_HORI4P);
device.option_add("barcode_battler", NES_BARCODE_BATTLER);
device.option_add("subor_keyboard", NES_SUBORKEYBOARD);
+ device.option_add("taptapmat", NES_TAPTAPMAT);
}