summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2020-12-28 13:53:36 -0500
committer AJR <ajrhacker@users.noreply.github.com>2020-12-28 13:53:36 -0500
commitc797dba569f61182de9cbc4603156e03356bfb88 (patch)
treef4de9d1e38f4a62e289e3af96dbba121c6a83d22
parentf6f09015515297fbc6e017a126bb3b6d72b1abcb (diff)
hitpoker.cpp: Fix mistake in allocation size
-rw-r--r--src/mame/drivers/hitpoker.cpp2
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);
}