diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json index 4ec84bbe..c7ea57ae 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -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", diff --git a/Makefile b/Makefile index 6a97fd61..4618a44e 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/source/guis/gui_cheats.cpp b/source/guis/gui_cheats.cpp index ed195f72..4dfa2674 100644 --- a/source/guis/gui_cheats.cpp +++ b/source/guis/gui_cheats.cpp @@ -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); @@ -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)); @@ -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));