summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2020-09-23 09:34:44 +0200
committer Ivan Vangelista <mesgnet@yahoo.it>2020-09-23 09:34:44 +0200
commit789f2e5a8a847da87feb9f946f323d0f4ac5f5a6 (patch)
tree780fa84906b95ee74d32a25235c691803bfc9260 /src/mame/includes
parentddad73176b077cebe081c92ddea7ad551c71733e (diff)
deco_mlc.cpp: only Stadium Hero '96 has the DECO146 on cart, so updated the maching configs to reflect this. Also removed some unused variables
Diffstat (limited to 'src/mame/includes')
-rw-r--r--src/mame/includes/deco_mlc.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/mame/includes/deco_mlc.h b/src/mame/includes/deco_mlc.h
index 85dc12a6765..c7d45063872 100644
--- a/src/mame/includes/deco_mlc.h
+++ b/src/mame/includes/deco_mlc.h
@@ -33,11 +33,12 @@ public:
void init_acchi();
void init_avengrgs();
- void mlc(machine_config &config);
- void mlc_6bpp(machine_config &config);
+ void acchi(machine_config &config);
void avengrgs(machine_config &config);
+ void mlc(machine_config &config);
void mlc_5bpp(machine_config &config);
- void acchi(machine_config &config);
+ void mlc_6bpp(machine_config &config);
+ void stadhr96(machine_config &config);
protected:
virtual void machine_reset() override;
@@ -61,11 +62,7 @@ private:
required_region_ptr<u8> m_gfx2;
int m_irqLevel;
- u32 m_mlc_raster_table_1[4*256];
- u32 m_mlc_raster_table_2[4*256];
- u32 m_mlc_raster_table_3[4*256];
u32 m_vbl_i;
- int m_lastScanline[9];
u32 m_colour_mask;
u32 m_shadow_mask;
u32 m_shadow_shift;