From 48472bd4bcc0bb88816792e35ff4451a9d7f976a Mon Sep 17 00:00:00 2001 From: NovaRain Date: Thu, 28 May 2026 13:16:18 +0800 Subject: [PATCH] Fixed typo in sound debug output --- sfall/Modules/BugFixes.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sfall/Modules/BugFixes.cpp b/sfall/Modules/BugFixes.cpp index b4d138d0..a9d6324e 100644 --- a/sfall/Modules/BugFixes.cpp +++ b/sfall/Modules/BugFixes.cpp @@ -4564,6 +4564,9 @@ void BugFixes::init() { // Fix for the morning starting at 6:01 instead of 6:00 while traveling on the world map SafeWrite8(0x4C0765, 0x7C); // jle > jl (wmRndEncounterOccurred_) + + // Fix typo in debug output from gsound_load_sound_ engine function + SafeWrite16(0x503CB1, 0x7972); // was "tyring %s" } }