From be584d7ee341212a01dd2cb52ea5457d36d3d04b Mon Sep 17 00:00:00 2001 From: Sergio Martin Date: Tue, 28 Jan 2025 18:48:36 +0100 Subject: [PATCH] Fixed wrong ifdef --- source/quickerNES/core/core.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/quickerNES/core/core.hpp b/source/quickerNES/core/core.hpp index cf2c8bd..c987117 100644 --- a/source/quickerNES/core/core.hpp +++ b/source/quickerNES/core/core.hpp @@ -26,7 +26,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include #include -#ifdef QUICKERNES_ENABLE_INPUT_CALLBACK +#ifdef _QUICKERNES_ENABLE_INPUT_CALLBACK extern void (*input_callback_cb)(void); #endif @@ -849,7 +849,7 @@ class Core : private Cpu input_state.arkanoid_fire = current_arkanoid_fire; #endif - #ifdef QUICKERNES_ENABLE_INPUT_CALLBACK + #ifdef _QUICKERNES_ENABLE_INPUT_CALLBACK input_callback_cb(); #endif }