From 0d486c18d069cc5669385dec735adae2b5d7d1f9 Mon Sep 17 00:00:00 2001 From: tildearrow Date: Fri, 22 Mar 2024 03:08:53 -0500 Subject: [PATCH] NDS: decrease the clock divider --- src/engine/platform/nds.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/platform/nds.cpp b/src/engine/platform/nds.cpp index 86135f0ae..cc5146a94 100644 --- a/src/engine/platform/nds.cpp +++ b/src/engine/platform/nds.cpp @@ -23,7 +23,7 @@ #include #define CHIP_DIVIDER 32 -#define CLOCK_DIVIDER 512 // for match to output rate +#define CLOCK_DIVIDER 128 // for match to output rate #define rRead8(a) (nds.read8(a)) #define rWrite8(a,v) {if(!skipRegisterWrites) {nds.write8((a),(v)); regPool[(a)]=(v); if(dumpWrites) addWrite((a),(v)); }}