summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/albazg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/albazg.cpp')
-rw-r--r--src/mame/drivers/albazg.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mame/drivers/albazg.cpp b/src/mame/drivers/albazg.cpp
index a2c11c23249..32f54c79b13 100644
--- a/src/mame/drivers/albazg.cpp
+++ b/src/mame/drivers/albazg.cpp
@@ -75,7 +75,7 @@ private:
DECLARE_WRITE8_MEMBER(mux_w);
DECLARE_WRITE8_MEMBER(yumefuda_output_w);
TILE_GET_INFO_MEMBER(y_get_bg_tile_info);
- uint32_t screen_update_yumefuda(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_yumefuda(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
void main_map(address_map &map);
void port_map(address_map &map);
@@ -114,7 +114,7 @@ void albazg_state::video_start()
m_bg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(albazg_state::y_get_bg_tile_info),this), TILEMAP_SCAN_ROWS, 8, 8, 32, 32);
}
-uint32_t albazg_state::screen_update_yumefuda(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
+uint32_t albazg_state::screen_update_yumefuda(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect)
{
m_bg_tilemap->draw(screen, bitmap, cliprect, 0, 0);
return 0;
@@ -383,7 +383,6 @@ void albazg_state::yumefuda(machine_config &config)
screen.set_size(32*8, 32*8);
screen.set_visarea_full();
screen.set_screen_update(FUNC(albazg_state::screen_update_yumefuda));
- screen.set_palette("palette");
h46505_device &crtc(H46505(config, "crtc", MASTER_CLOCK/16)); /* hand tuned to get ~60 fps */
crtc.set_screen("screen");