Skip to content

Commit e782970

Browse files
BenjaminSoelbergBrianPugh
authored andcommitted
This should fix #59 - [ZELDA] GB games resets retro-go config (and sometimes BSOD)
It does so by ignoring any LA menu selection if --no-la was given.
1 parent dab2d85 commit e782970

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

patches/zelda.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,10 @@ def patch(self):
390390
if self.args.no_la:
391391
printi("Removing Link's Awakening (All Languages)")
392392
self.external.clear_range(0xD2000, 0x1F4C00)
393-
# TODO: disable LA in the gnw menu, it's currently causing problems/BSODs.
393+
self.external[0x315B54] = 0x00 # Ignore LA EN menu selection
394+
self.external[0x315B58] = 0x00 # Ignore LA FR menu selection
395+
self.external[0x315B5C] = 0x00 # Ignore LA DE menu selection
396+
self.external[0x315B60] = 0x00 # Ignore LA JP menu selection
394397
# TODO: make this work with moving stuff around, currently just
395398
# removing to free up an island of space.
396399

0 commit comments

Comments
 (0)