summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2012-04-22 05:29:39 +0000
committer Aaron Giles <aaron@aarongiles.com>2012-04-22 05:29:39 +0000
commit769de61309c3026a9640011ef1c510a35b6c70b1 (patch)
tree945c5c1c07bc44ac4b8bb4dff6b389557167b3c3 /src
parent75160ba9c2ebfeb4d8637eeab34d546ed4bf175d (diff)
Fix some regressions.
Diffstat (limited to 'src')
-rw-r--r--src/mame/drivers/champbwl.c2
-rw-r--r--src/mame/includes/alpha68k.h4
-rw-r--r--src/mame/includes/galpanic.h2
3 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/champbwl.c b/src/mame/drivers/champbwl.c
index 91d0da7f31d..eefecc0d0ed 100644
--- a/src/mame/drivers/champbwl.c
+++ b/src/mame/drivers/champbwl.c
@@ -229,7 +229,7 @@ WRITE8_MEMBER(champbwl_state::doraemon_outputs_w)
coin_counter_w(machine(), 1, data & 2); // gift out counter
coin_lockout_w(machine(), 0, ~data & 8); // coin lockout
- machine().device<ticket_dispenser_device>("hopper")->write(*&space, 0, (data & 0x04) ? 0x00 : 0x80); // gift out motor
+ machine().device<ticket_dispenser_device>("hopper")->write(space, 0, (data & 0x04) ? 0x00 : 0x80); // gift out motor
membank("bank1")->set_entry((data & 0x30) >> 4);
diff --git a/src/mame/includes/alpha68k.h b/src/mame/includes/alpha68k.h
index aea2554ea29..68271007529 100644
--- a/src/mame/includes/alpha68k.h
+++ b/src/mame/includes/alpha68k.h
@@ -15,9 +15,9 @@ public:
m_paletteram(*this, "paletteram"){ }
/* memory pointers */
- required_shared_ptr<UINT16> m_shared_ram;
+ optional_shared_ptr<UINT16> m_shared_ram;
required_shared_ptr<UINT16> m_spriteram;
- required_shared_ptr<UINT16> m_videoram;
+ optional_shared_ptr<UINT16> m_videoram;
optional_shared_ptr<UINT16> m_paletteram;
/* video-related */
diff --git a/src/mame/includes/galpanic.h b/src/mame/includes/galpanic.h
index e1dfabe7d02..7756d0b11dd 100644
--- a/src/mame/includes/galpanic.h
+++ b/src/mame/includes/galpanic.h
@@ -13,7 +13,7 @@ public:
required_shared_ptr<UINT16> m_fgvideoram;
bitmap_ind16 m_bitmap;
bitmap_ind16 m_sprites_bitmap;
- required_shared_ptr<UINT16> m_spriteram;
+ optional_shared_ptr<UINT16> m_spriteram;
DECLARE_WRITE16_MEMBER(galpanic_6295_bankswitch_w);
DECLARE_WRITE16_MEMBER(galpanica_6295_bankswitch_w);
DECLARE_WRITE16_MEMBER(galpanica_misc_w);