diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-11-09 15:21:43 -0600 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-11-09 15:21:43 -0600 |
commit | efd71a5cd311a7ad7e7d4aaa4f24eead65cce040 (patch) | |
tree | 60489c70a2e8e38f095845759ac46b26c0eb3bdb | |
parent | 1d2239e091e9cbf9026ec5afe7e86b718b9b8f38 (diff) |
fix some configuration in vba/vba.py
-rw-r--r-- | pokemontools/vba/vba.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pokemontools/vba/vba.py b/pokemontools/vba/vba.py index d7fdf1d..4b0bbee 100644 --- a/pokemontools/vba/vba.py +++ b/pokemontools/vba/vba.py @@ -19,8 +19,8 @@ from pokemontools.map_names import map_names import keyboard # just use a default config for now until the globals are removed completely -import pokemontools.config as conf -config = conf.Config() +import pokemontools.configuration as configuration +config = configuration.Config() project_path = config.path save_state_path = config.save_state_path rom_path = config.rom_path |