From 48ef35778b0f5480773141c2e0f4e21e0813db2e Mon Sep 17 00:00:00 2001 From: Kara Alexandra Date: Fri, 7 Mar 2025 23:50:36 -0600 Subject: [PATCH] Fix sprite-author write (hopefully) --- src/ZSPR.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ZSPR.js b/src/ZSPR.js index 4e53d95..eec7152 100644 --- a/src/ZSPR.js +++ b/src/ZSPR.js @@ -71,7 +71,7 @@ export default class ZSPR { const [tophalf, bottomhalf] = format_author(author); rom.set(tophalf, 0x118002); - rom.set(bottomhalf, 0x11801F); + rom.set(bottomhalf, 0x118020); } return rom;