diff options
-rw-r--r-- | redtools/extract_maps.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/redtools/extract_maps.py b/redtools/extract_maps.py index bc0a193..1b22fd3 100644 --- a/redtools/extract_maps.py +++ b/redtools/extract_maps.py @@ -6,8 +6,8 @@ import json #parse hex values as base 16 (see calculate_pointer) base = 16 -#where to load the rom from -rom_filename = "../baserom.gbc" +# TODO: load the rom based on config.rom_path +rom_filename = os.path.join(os.getcwd(), "baserom.gbc") rom = None #load the rom later #map header pointers start at 0x1AE |