mirror of
https://github.com/holub/mame
synced 2025-04-23 08:49:55 +03:00
Fix build - video/decodmd3.h had got out of sync with the source.
This commit is contained in:
parent
c04e461a8b
commit
715767978b
@ -43,6 +43,7 @@
|
||||
#include "speaker.h"
|
||||
|
||||
|
||||
namespace {
|
||||
|
||||
class tomcat_state : public driver_device
|
||||
{
|
||||
@ -395,4 +396,6 @@ ROM_START( tomcat )
|
||||
ROM_LOAD( "136021-105.1l", 0x0000, 0x0100, CRC(82fc3eb2) SHA1(184231c7baef598294860a7d2b8a23798c5c7da6) ) /* AVG PROM */
|
||||
ROM_END
|
||||
|
||||
} // anonymous namespace
|
||||
|
||||
GAME( 1985, tomcat, 0, tomcat, tomcat, tomcat_state, empty_init, ROT0, "Atari", "TomCat (prototype)", MACHINE_SUPPORTS_SAVE )
|
||||
|
@ -754,7 +754,7 @@ void avg_tempest_device::vggo() // tempest_vggo
|
||||
|
||||
int avg_mhavoc_device::handler_1() // mhavoc_latch1
|
||||
{
|
||||
// * Major Havoc just has ymin clipping
|
||||
// Major Havoc just has ymin clipping
|
||||
|
||||
if (!m_lst)
|
||||
vg_add_clip(0, m_ypos, m_xmax << 16, m_ymax << 16);
|
||||
|
@ -43,9 +43,8 @@ protected:
|
||||
private:
|
||||
required_device<cpu_device> m_cpu;
|
||||
required_device<mc6845_device> m_mc6845;
|
||||
required_shared_ptr<uint8_t> m_ram;
|
||||
required_memory_bank m_rambank;
|
||||
required_memory_bank m_rombank;
|
||||
required_shared_ptr<uint8_t> m_ram;
|
||||
|
||||
required_region_ptr<uint8_t> m_rom;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user