Skip to content

Commit

Permalink
Not masking out zero for DIFF
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvita committed Sep 27, 2020
1 parent a7a0766 commit a892cd7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"DEBUG",
"SWITCH",
"__SWITCH__",
"VERSION_STRING=\"3.7.5\""
"VERSION_STRING=\"3.7.6\""
],
"compilerPath": "F:/devkitPro/devkitA64/bin/aarch64-none-elf-g++",
"cStandard": "c11",
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 := 7
VERSION_MICRO := 5
VERSION_MICRO := 6
NIGHTLY :=

APP_TITLE := EdiZon SE
Expand Down
6 changes: 3 additions & 3 deletions source/guis/gui_cheats.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,7 @@ void GuiCheats::draw()
Gui::drawTextAligned(font14, 700, 142, currTheme.textColor, "Others", ALIGNED_LEFT);

ss.str("");
ss << "EdiZon SE : 3.7.5";
ss << "EdiZon SE : 3.7.6";
if (m_32bitmode)
ss << " 32 bit pointer mode";
Gui::drawTextAligned(font14, 900, 62, currTheme.textColor, ss.str().c_str(), ALIGNED_LEFT);
Expand Down Expand Up @@ -4231,7 +4231,7 @@ void GuiCheats::searchMemoryValuesSecondary(Debugger *debugger, searchType_t sea
}
break;
case SEARCH_MODE_DIFF:
if ((newValue._u64 != oldValue._u64) && (newValue._u64 <= m_heapBaseAddr || newValue._u64 >= (m_heapEnd)) && (newValue._u64 != 0))
if ((newValue._u64 != oldValue._u64) && (newValue._u64 <= m_heapBaseAddr || newValue._u64 >= (m_heapEnd)) )
{
addrDump->addData((u8 *)&addr, sizeof(u64));
newMemDump->addData((u8 *)&newValue, sizeof(u64));
Expand Down Expand Up @@ -4587,7 +4587,7 @@ void GuiCheats::searchMemoryValuesTertiary(Debugger *debugger, searchValue_t sea
}
break;
case SEARCH_MODE_DIFF:
if ((value._s64 != oldvalue._s64) && (value._u64 <= m_heapBaseAddr || value._u64 >= (m_heapEnd)) && (value._u64 != 0))
if ((value._s64 != oldvalue._s64) && (value._u64 <= m_heapBaseAddr || value._u64 >= (m_heapEnd)))
{
newDump->addData((u8 *)&address, sizeof(u64));
newvalueDump->addData((u8 *)&value, sizeof(u64));
Expand Down

0 comments on commit a892cd7

Please sign in to comment.