Skip to content

Commit

Permalink
sameA sameB
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvita committed Mar 1, 2022
1 parent 532c61d commit 7c47355
Show file tree
Hide file tree
Showing 7 changed files with 72 additions and 17 deletions.
1 change: 1 addition & 0 deletions .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"includePath": [
"${workspaceFolder}/**",
"${workspaceFolder}/include/**",
"f:/Download2/EdiZongit/include",
"F:/devkitPro/devkitA64/include/**",
"F:/devkitPro/devkitA64/aarch64-none-elf/include/**",
"F:/devkitPro/libnx/include/**",
Expand Down
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 := 26
VERSION_MICRO := 27
NIGHTLY :=

APP_TITLE := EdiZon SE
Expand Down
2 changes: 1 addition & 1 deletion include/guis/gui_cheats.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ class GuiCheats : public Gui

#define MAX_NUM_SOURCE_POINTER 200 // bound check for debugging;
#define MAX_POINTER_DEPTH 12 // up to 4 seems OK with forward only search took 94s. 215s for big dump
#define MAX_POINTER_RANGE 0x2000
#define MAX_POINTER_RANGE 0x2000000
#define MAX_NUM_POINTER_OFFSET 30
#define HAVESAVE (Title::g_titles[m_debugger->getRunningApplicationTID()] != nullptr) //m_havesave
// #define MAX_JUMP_STACK 50
Expand Down
4 changes: 2 additions & 2 deletions include/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ typedef enum
SEARCH_MODE_NONE,
SEARCH_MODE_NOT_POINTER,
SEARCH_MODE_NOTAB,
// SEARCH_MODE_SAME_A,
// SEARCH_MODE_SAME_B,
SEARCH_MODE_SAME_A,
SEARCH_MODE_SAME_B,
// SEARCH_MODE_DIFF_A,
} searchMode_t;

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.26"
#define VERSION_STRING "3.8.27"
76 changes: 65 additions & 11 deletions source/guis/gui_cheats.cpp

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion source/helpers/memory_dump.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ MemoryDump::MemoryDump(std::string filePath, DumpType dumpType, bool discardFile
m_filePath = filePath;
printf("%s\n", filePath.c_str());
};
if (filePath.compare("/switch/EdiZon/datadump2.dat") == 0)
if (filePath.compare("/switch/EdiZon/datadump2.dat") == 0 || filePath.compare("/switch/EdiZon/datadump2B.dat") == 0)
{
filePath.replace(0, sizeof(EDIZON_DIR) - 1, m_edizon_dir);
m_filePath = filePath.append(m_store_extension);
Expand Down

0 comments on commit 7c47355

Please sign in to comment.