From 04726b827ed4f82a79d715930afcf61474bb6994 Mon Sep 17 00:00:00 2001 From: NewRisingSun <8vytz1+dhp372pv94ebg@sharklasers.com> Date: Fri, 12 Sep 2025 22:36:58 +0200 Subject: [PATCH] Correct incompatible pointer type. --- src/boards/asic_h3001.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/boards/asic_h3001.c b/src/boards/asic_h3001.c index 77c7554..e4dd57c 100644 --- a/src/boards/asic_h3001.c +++ b/src/boards/asic_h3001.c @@ -161,5 +161,5 @@ void H3001_init (CartInfo *info, void (*sync)()) { H3001_configure(sync); info->Power = H3001_power; info->Reset = H3001_cbSync; - GameStateRestore = H3001_cbSync; + GameStateRestore = H3001_restore; }