Skip to content

Commit

Permalink
fix Data B missing bug
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvita committed Mar 9, 2022
1 parent 4dc3f55 commit 9b2584f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ include $(DEVKITPRO)/libnx/switch_rules
#---------------------------------------------------------------------------------
VERSION_MAJOR := 3
VERSION_MINOR := 8
VERSION_MICRO := 30
VERSION_MICRO := 31
NIGHTLY :=

APP_TITLE := EdiZon SE
Expand Down
2 changes: 1 addition & 1 deletion include/version.h
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#define VERSION_STRING "3.8.30"
#define VERSION_STRING "3.8.31"
4 changes: 3 additions & 1 deletion source/guis/gui_cheats.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6299,7 +6299,9 @@ void GuiCheats::searchMemoryAddressesSecondary2(Debugger *debugger, searchValue_
MemoryDump *predataDump = new MemoryDump(EDIZON_DIR "/predatadump2.dat", DumpType::DATA, false);
MemoryDump *newdataDump = new MemoryDump(EDIZON_DIR "/datadump2.dat", DumpType::DATA, true);
s = m_edizon_dir + "/datadump2B.dat" + m_store_extension;
REPLACEFILE(s.c_str(), EDIZON_DIR "/predatadump2B.dat");
if (access(s.c_str(), F_OK) == 0) {
REPLACEFILE(s.c_str(), EDIZON_DIR "/predatadump2B.dat");
}
MemoryDump *predataDumpB = new MemoryDump(EDIZON_DIR "/predatadump2B.dat", DumpType::DATA, false);
MemoryDump *newdataDumpB = new MemoryDump(EDIZON_DIR "/datadump2B.dat", DumpType::DATA, true);
// MemoryDump *debugdump1 = new MemoryDump(EDIZON_DIR "/debugdump1.dat", DumpType::HELPER, true);
Expand Down

0 comments on commit 9b2584f

Please sign in to comment.