mirror of
https://github.com/holub/mame
synced 2025-04-22 00:11:58 +03:00
hitpoker.cpp: Fix mistake in allocation size
This commit is contained in:
parent
819888565d
commit
8bc60a4880
@ -100,7 +100,7 @@ private:
|
||||
|
||||
void hitpoker_state::video_start()
|
||||
{
|
||||
m_videoram = std::make_unique<uint8_t[]>(0x35ff);
|
||||
m_videoram = std::make_unique<uint8_t[]>(0x3600);
|
||||
m_paletteram = std::make_unique<uint8_t[]>(0x1000);
|
||||
m_colorram = std::make_unique<uint8_t[]>(0x2000);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user