From 424fc3e6c6fa5c1a70a50b03c62c6ed2c1e7361d Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Thu, 23 Nov 2017 12:38:28 -0500 Subject: [PATCH] Create data subfolder in preperation for new features Move base2current.json to this new subfolder --- Rom.py | 2 +- base2current.json => data/base2current.json | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename base2current.json => data/base2current.json (100%) diff --git a/Rom.py b/Rom.py index 2f47d956..b9dcb776 100644 --- a/Rom.py +++ b/Rom.py @@ -66,7 +66,7 @@ class LocalRom(object): self.buffer.extend(bytearray([0x00] * (2097152 - len(self.buffer)))) # load randomizer patches - patches = json.load(open('base2current.json', 'r')) + patches = json.load(open('data/base2current.json', 'r')) for patch in patches: if isinstance(patch, dict): for baseaddress, values in patch.items(): diff --git a/base2current.json b/data/base2current.json similarity index 100% rename from base2current.json rename to data/base2current.json