diff options
author | metaphysicsIO <103212704+metaphysicsIO@users.noreply.github.com> | 2023-12-13 10:39:04 -0600 |
---|---|---|
committer | metaphysicsIO <103212704+metaphysicsIO@users.noreply.github.com> | 2023-12-13 10:39:04 -0600 |
commit | a9e2ab00ba0042519ada63083675140466aaf984 (patch) | |
tree | 6c2396b9ff9294015da04539d9332be293d4c732 /PrivateAccess.cpp | |
parent | b5bb6a2c84edf5fa6cd65560b6d8c781e29ab585 (diff) | |
download | PSE-a9e2ab00ba0042519ada63083675140466aaf984.tar.gz |
You only need to generate the hashmap once, so it's moved to the constructor.
Diffstat (limited to 'PrivateAccess.cpp')
-rw-r--r-- | PrivateAccess.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/PrivateAccess.cpp b/PrivateAccess.cpp index 36a90ed..beb2b70 100644 --- a/PrivateAccess.cpp +++ b/PrivateAccess.cpp @@ -9,7 +9,14 @@ SavEdit::SavEdit() */ filename = "Pokemon - Red Version (USA, Europe) (SGB Enhanced).sav"; + lang = en_US; + + // Generate the hashmaps + pkmnMap(); + moveMap(); + //TODO: itemMap(); + } std::string SavEdit::getFilename() |