mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
hitpoker.cpp: Fix mistake in allocation size
This commit is contained in:
parent
f6f0901551
commit
c797dba569
@ -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