LADX: apworld (#1665)

This commit is contained in:
zig-for
2023-04-06 11:06:34 -07:00
committed by GitHub
parent eef8f7af1a
commit ece6598b09
6 changed files with 22 additions and 17 deletions

View File

@@ -7,7 +7,7 @@ h2b = binascii.unhexlify
class ROM:
def __init__(self, filename):
data = open(Utils.local_path(filename), "rb").read()
data = open(Utils.user_path(filename), "rb").read()
#assert len(data) == 1024 * 1024
self.banks = []
for n in range(0x40):