From d7297edcce91679f1731f3c12a677e24d7d75f2c Mon Sep 17 00:00:00 2001 From: Frode Solheim Date: Wed, 16 Jul 2025 02:16:49 +0200 Subject: [PATCH] Moved isideint declaration to gayle.h --- include/gayle.h | 2 ++ memory.cpp | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/include/gayle.h b/include/gayle.h index 7badbd42..726be9e2 100644 --- a/include/gayle.h +++ b/include/gayle.h @@ -23,4 +23,6 @@ extern int gary_timeout; // non-existing memory access = delay void gayle_dataflyer_enable(bool); +bool isideint(void); + #endif /* UAE_GAYLE_H */ diff --git a/memory.cpp b/memory.cpp index 862a6dcf..b9c5ba48 100644 --- a/memory.cpp +++ b/memory.cpp @@ -405,7 +405,6 @@ uae_u32 dummy_get (uaecptr addr, int size, bool inst, uae_u32 defvalue) return currprefs.cpu_model > 68000 ? 0x0000 : 0xffff; } if (addr == 0xb0b000) { - extern bool isideint(void); return isideint() ? 0xffff : 0x0000; } #endif -- 2.47.3