diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-11-02 14:01:01 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-11-02 14:01:01 -0500 |
commit | 185856adb4a10c66a1fc206c13862ffa6958cec6 (patch) | |
tree | d6f8f2f7237cf97caf66c7445bb752a12e991da5 | |
parent | 1f185185ca15389417474f6becfddde56e8e80eb (diff) |
fix a call to vba.shutdown in bootstrap()
-rw-r--r-- | pokemontools/vba/autoplayer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pokemontools/vba/autoplayer.py b/pokemontools/vba/autoplayer.py index a20744e..af14d47 100644 --- a/pokemontools/vba/autoplayer.py +++ b/pokemontools/vba/autoplayer.py @@ -567,7 +567,7 @@ def bootstrap(runner=None, cry=None): # keep a reference of the current state state = runner.cry.vba.state - cry.vba.shutdown() + runner.cry.vba.shutdown() return state |