Skip to content

Commit

Permalink
konami/k037122.cpp: Fix max palette numbers of gfxs (#13315)
Browse files Browse the repository at this point in the history
  • Loading branch information
cam900 authored Feb 2, 2025
1 parent ba5af9a commit e1aa29c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mame/konami/k037122.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ void k037122_device::device_start()
m_tilemap_128->set_transparent_pen(0);
m_tilemap_256->set_transparent_pen(0);

set_gfx(0 ,std::make_unique<gfx_element>(this, k037122_char_layout, (uint8_t *)m_char_ram.get(), 0, entries() / 16, 0));
set_gfx(0, std::make_unique<gfx_element>(this, k037122_char_layout, (uint8_t *)m_char_ram.get(), 0, entries() / 256, 0));

save_pointer(NAME(m_reg), 0x400 / 4);
save_pointer(NAME(m_char_ram), 0x200000 / 4);
Expand Down

0 comments on commit e1aa29c

Please sign in to comment.