diff options
-rw-r--r-- | src/mame/drivers/equites.cpp | 4 | ||||
-rw-r--r-- | src/mame/includes/equites.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/equites.cpp b/src/mame/drivers/equites.cpp index 1fef84c45cb..51bbb7db873 100644 --- a/src/mame/drivers/equites.cpp +++ b/src/mame/drivers/equites.cpp @@ -1169,7 +1169,7 @@ void gekisou_state::gekisou(machine_config &config) NVRAM(config, "nvram", nvram_device::DEFAULT_ALL_0); } -void gekisou_state::bngotime(machine_config &config) +void equites_state::bngotime(machine_config &config) { equites(config); @@ -2008,7 +2008,7 @@ GAME( 1984, bullfgtr, 0, equites, bullfgtr, equites_state, init_equite GAME( 1984, bullfgtrs, bullfgtr, equites, bullfgtr, equites_state, init_equites, ROT90, "Alpha Denshi Co. (Sega license)", "Bull Fighter (Sega)", MACHINE_IMPERFECT_SOUND | MACHINE_SUPPORTS_SAVE ) GAME( 1985, kouyakyu, 0, equites, kouyakyu, equites_state, init_equites, ROT0, "Alpha Denshi Co.", "The Koukou Yakyuu", MACHINE_IMPERFECT_SOUND | MACHINE_SUPPORTS_SAVE ) GAME( 1985, gekisou, 0, gekisou, gekisou, gekisou_state, init_equites, ROT90, "Eastern Corp.", "Gekisou (Japan)", MACHINE_IMPERFECT_SOUND | MACHINE_IMPERFECT_GRAPHICS | MACHINE_SUPPORTS_SAVE ) -GAME( 1986, bngotime, 0, bngotime, gekisou, gekisou_state, init_equites, ROT90, "CLS", "Bingo Time", MACHINE_NO_SOUND | MACHINE_IMPERFECT_GRAPHICS | MACHINE_SUPPORTS_SAVE ) // needs emulation of the sound board +GAME( 1986, bngotime, 0, bngotime, equites, equites_state, init_equites, ROT90, "CLS", "Bingo Time", MACHINE_NOT_WORKING | MACHINE_NO_SOUND | MACHINE_IMPERFECT_GRAPHICS | MACHINE_SUPPORTS_SAVE ) // needs inputs, emulation of the sound board // Splendor Blast Hardware GAME( 1985, splndrbt, 0, splndrbt, splndrbt, splndrbt_state, init_splndrbt, ROT0, "Alpha Denshi Co.", "Splendor Blast (set 1)", MACHINE_IMPERFECT_SOUND | MACHINE_IMPERFECT_GRAPHICS | MACHINE_SUPPORTS_SAVE ) diff --git a/src/mame/includes/equites.h b/src/mame/includes/equites.h index b21018663b9..00aee2d5df8 100644 --- a/src/mame/includes/equites.h +++ b/src/mame/includes/equites.h @@ -119,6 +119,7 @@ public: void unpack_block(const char *region, int offset, int size); void unpack_region(const char *region); void equites(machine_config &config); + void bngotime(machine_config &config); protected: virtual void machine_start() override; @@ -135,7 +136,6 @@ class gekisou_state : public equites_state public: using equites_state::equites_state; DECLARE_READ_LINE_MEMBER(gekisou_unknown_bit_r); - void bngotime(machine_config &config); void gekisou(machine_config &config); protected: |