diff options
| author | 2014-04-07 06:04:18 +0000 | |
|---|---|---|
| committer | 2014-04-07 06:04:18 +0000 | |
| commit | fec65e0b5766ade69e086d1c5b859d97494fce56 (patch) | |
| tree | c22b07938e9ad590184f1276bc2bead6d888a78d /src/mess/machine/mega32x.h | |
| parent | 30d94e51c53f30187a1bc565ef33e4744319790e (diff) | |
Cleanups and version bumpmame0153
Diffstat (limited to 'src/mess/machine/mega32x.h')
| -rw-r--r-- | src/mess/machine/mega32x.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mess/machine/mega32x.h b/src/mess/machine/mega32x.h index cf877add84e..ad10677c403 100644 --- a/src/mess/machine/mega32x.h +++ b/src/mess/machine/mega32x.h @@ -41,9 +41,9 @@ public: // set some variables at start, depending on region (shall be moved to a device interface?) void set_framerate(int rate) { m_framerate = rate; } void set_32x_pal(bool pal) { m_32x_pal = pal ? 1 : 0; } - void set_total_scanlines(int total) { m_base_total_scanlines = total; } // this get set at start only - void update_total_scanlines(bool mode3) { m_total_scanlines = mode3 ? (m_base_total_scanlines * 2) : m_base_total_scanlines; } // this gets set at each EOF - + void set_total_scanlines(int total) { m_base_total_scanlines = total; } // this get set at start only + void update_total_scanlines(bool mode3) { m_total_scanlines = mode3 ? (m_base_total_scanlines * 2) : m_base_total_scanlines; } // this gets set at each EOF + // static configuration static void static_set_palette_tag(device_t &device, const char *tag); @@ -192,7 +192,7 @@ private: UINT16 *m_32x_display_dram, *m_32x_access_dram; UINT16* m_32x_palette; UINT16* m_32x_palette_lookup; - + required_device<palette_device> m_palette; }; |
