Fixed regressions (no whatsnew)

This commit is contained in:
Miodrag Milanovic 2012-10-03 06:24:43 +00:00
parent c592f67efa
commit 92b1c4eebd
5 changed files with 5 additions and 5 deletions

View File

@ -1475,7 +1475,7 @@ DRIVER_INIT_MEMBER(cd32_state,odeontw2)
/***************************************************************************************************/
// these are clones of the cd32 SYSTEM because they run on a stock retail unit, with additional HW
GAME( 1993, cd32bios, 0, cd32base, cd32, driver_device, 0, ROT0, "Commodore Business Machines", "CD32 Bios", GAME_IMPERFECT_GRAPHICS|GAME_IMPERFECT_SOUND | GAME_IS_BIOS_ROOT )
GAME( 1993, cd32bios, 0, cd32base, cd32, cd32_state, cd32, ROT0, "Commodore Business Machines", "CD32 Bios", GAME_IMPERFECT_GRAPHICS|GAME_IMPERFECT_SOUND | GAME_IS_BIOS_ROOT )
GAME( 1995, cndypuzl, cd32bios, cd32base, cndypuzl, cd32_state, cndypuzl, ROT0, "CD Express", "Candy Puzzle (v1.0)", GAME_IMPERFECT_GRAPHICS|GAME_IMPERFECT_SOUND )
GAME( 1995, haremchl, cd32bios, cd32base, haremchl, cd32_state, haremchl, ROT0, "CD Express", "Harem Challenge", GAME_IMPERFECT_GRAPHICS|GAME_IMPERFECT_SOUND )
GAME( 1995, lsrquiz, cd32bios, cd32base, lsrquiz, cd32_state, lsrquiz, ROT0, "CD Express", "Laser Quiz Italy", GAME_IMPERFECT_GRAPHICS|GAME_IMPERFECT_SOUND ) /* no player 2 inputs (ingame) */

View File

@ -17,7 +17,7 @@ public:
: driver_device(mconfig, type, tag),
m_discrete(*this, "discrete") { }
required_device<discrete_device> m_discrete;
optional_device<discrete_device> m_discrete;
UINT8 m_analog_data;
UINT8 m_rb_input_select;

View File

@ -20,7 +20,7 @@ public:
m_spriteram(*this, "spriteram"),
m_sn_1(*this, "sn1"),
m_sn_2(*this, "sn2"),
m_discrete(*this, "discrete"){ }
m_discrete(*this, "fltdisc"){ }
/* memory pointers */
required_shared_ptr<UINT8> m_spritebank;

View File

@ -60,7 +60,7 @@ public:
required_shared_ptr<UINT8> m_spriteram;
required_shared_ptr<UINT8> m_videoram;
required_device<discrete_device> m_discrete;
optional_device<discrete_device> m_discrete;
tilemap_t *m_bg_tilemap;
int m_monitor;

View File

@ -55,7 +55,7 @@ public:
UINT8 m_palette_bank;
UINT8 m_leds;
required_shared_ptr<UINT8> m_scanline_latch;
required_device<discrete_device> m_discrete;
optional_device<discrete_device> m_discrete;
pen_t m_pens[NUM_PENS];
DECLARE_WRITE8_MEMBER(zookeep_bankswitch_w);
DECLARE_WRITE8_MEMBER(qix_data_firq_w);