diff options
author | 2020-12-28 13:53:36 -0500 | |
---|---|---|
committer | 2020-12-28 13:53:36 -0500 | |
commit | c797dba569f61182de9cbc4603156e03356bfb88 (patch) | |
tree | f4de9d1e38f4a62e289e3af96dbba121c6a83d22 | |
parent | f6f09015515297fbc6e017a126bb3b6d72b1abcb (diff) |
hitpoker.cpp: Fix mistake in allocation size
-rw-r--r-- | src/mame/drivers/hitpoker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/hitpoker.cpp b/src/mame/drivers/hitpoker.cpp index bc22a8888b7..ddab3fe1dec 100644 --- a/src/mame/drivers/hitpoker.cpp +++ b/src/mame/drivers/hitpoker.cpp @@ -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); } |