From d24669ea0b4e4e29c4a36e1328b5513e250fbbd2 Mon Sep 17 00:00:00 2001 From: AJR Date: Sat, 15 Oct 2022 13:42:36 -0400 Subject: [PATCH] antic: Fix state save after 0de5259a9d508141178687a860f479f5b57d7f50 --- src/mame/atari/antic.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/atari/antic.cpp b/src/mame/atari/antic.cpp index f5ecc7b077b..7d70457c757 100644 --- a/src/mame/atari/antic.cpp +++ b/src/mame/atari/antic.cpp @@ -393,7 +393,7 @@ void antic_device::device_start() save_item(NAME(m_cclock)); save_item(NAME(m_pmbits)); - save_pointer(NAME(m_cclk_expand), 21 * 256); + save_pointer(NAME(m_cclk_expand), 37 * 256); /* timers */ m_cycle_steal_timer = timer_alloc(FUNC(antic_device::steal_cycles), this);