Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/mame/nmk/nmk16.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5921,7 +5921,7 @@ void nmk16_state::manybloc(machine_config &config)

GFXDECODE(config, m_gfxdecode, m_palette, gfx_tharrier);
PALETTE(config, m_palette).set_format(palette_device::RRRRGGGGBBBBRGBx, 512);
MCFG_VIDEO_START_OVERRIDE(nmk16_state,macross)
MCFG_VIDEO_START_OVERRIDE(nmk16_state,manybloc)

// sound hardware
SPEAKER(config, "mono").front_center();
Expand Down
1 change: 1 addition & 0 deletions src/mame/nmk/nmk16.h
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ class nmk16_state : public driver_device, public seibu_sound_common
TILE_GET_INFO_MEMBER(bioship_get_bg_tile_info);
TILE_GET_INFO_MEMBER(bjtwin_get_bg_tile_info);
TILE_GET_INFO_MEMBER(powerins_get_bg_tile_info);
DECLARE_VIDEO_START(manybloc);
DECLARE_VIDEO_START(macross);
DECLARE_VIDEO_START(bioship);
DECLARE_VIDEO_START(strahl);
Expand Down
8 changes: 7 additions & 1 deletion src/mame/nmk/nmk16_v.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ VIDEO_START_MEMBER(nmk16_state, bioship)
m_tx_tilemap->set_scrolldx(92, 92);
}

VIDEO_START_MEMBER(nmk16_state,macross)
VIDEO_START_MEMBER(nmk16_state,manybloc)
{
m_bg_tilemap[0] = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(*this, NAME((&nmk16_state::common_get_bg_tile_info<0, 1>))), tilemap_mapper_delegate(*this, FUNC(nmk16_state::tilemap_scan_pages)), 16, 16, 256, 32);
m_bg_tilemap[1] = nullptr;
Expand All @@ -127,6 +127,12 @@ VIDEO_START_MEMBER(nmk16_state,macross)
m_tx_tilemap->set_transparent_pen(15);

video_init();
// no tilemap offset in this hardware? need to verification
}

VIDEO_START_MEMBER(nmk16_state,macross)
{
VIDEO_START_CALL_MEMBER(manybloc);
m_bg_tilemap[0]->set_scrolldx(92, 92);
m_tx_tilemap->set_scrolldx(92, 92);
}
Expand Down
Loading