fix find_duplicates

This commit is contained in:
Ethan Roseman 2021-09-22 19:57:12 +09:00
parent b127733cfa
commit 0989f8daa0
No known key found for this signature in database
GPG Key ID: 27F9FCEB8E4969BD

View File

@ -16,7 +16,7 @@ build_dir = root_dir + "build/"
def read_rom():
with open("ver/current/baserom.z64", "rb") as f:
with open(root_dir + "ver/current/baserom.z64", "rb") as f:
return f.read()