diff options
Diffstat (limited to 'src/mame/dataeast/actfancr.cpp')
| -rw-r--r-- | src/mame/dataeast/actfancr.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/dataeast/actfancr.cpp b/src/mame/dataeast/actfancr.cpp index b5c4227cb74..e20cb31cb7c 100644 --- a/src/mame/dataeast/actfancr.cpp +++ b/src/mame/dataeast/actfancr.cpp @@ -47,8 +47,8 @@ public: m_tilegen(*this, "tilegen%u", 1U), m_spritegen(*this, "spritegen"), m_spriteram(*this, "spriteram"), - m_spriteram16(*this, "spriteram16", 0x800, ENDIANNESS_BIG) { } - + m_spriteram16(*this, "spriteram16", 0x800, ENDIANNESS_BIG) + { } void actfancr(machine_config &config); @@ -81,8 +81,8 @@ public: actfancr_state(mconfig, type, tag), m_p(*this, "P%u", 1U), m_dsw(*this, "DSW%u", 1U), - m_system(*this, "SYSTEM") { } - + m_system(*this, "SYSTEM") + { } void triothep(machine_config &config); @@ -134,7 +134,7 @@ uint8_t triothep_state::control_r() case 1: return m_p[1]->read(); case 2: return m_dsw[0]->read(); case 3: return m_dsw[1]->read(); - case 4: return m_system->read(); // VBL + case 4: return m_system->read(); // VBL } return 0xff; |
