diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json index d5645029..56b2514c 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -14,7 +14,7 @@ "DEBUG", "SWITCH", "__SWITCH__", - "VERSION_STRING=\"3.7.7\"" + "VERSION_STRING=\"3.7.8\"" ], "compilerPath": "F:/devkitPro/devkitA64/bin/aarch64-none-elf-g++", "cStandard": "c11", diff --git a/Makefile b/Makefile index ea10866a..dcf9b5e0 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,7 @@ include $(DEVKITPRO)/libnx/switch_rules #--------------------------------------------------------------------------------- VERSION_MAJOR := 3 VERSION_MINOR := 7 -VERSION_MICRO := 7 +VERSION_MICRO := 8 NIGHTLY := APP_TITLE := EdiZon SE diff --git a/source/guis/gui_cheats.cpp b/source/guis/gui_cheats.cpp index 2ba81690..0ce473cc 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.7"; + ss << "EdiZon SE : 3.7.8"; if (m_32bitmode) ss << " 32 bit pointer mode"; Gui::drawTextAligned(font14, 900, 62, currTheme.textColor, ss.str().c_str(), ALIGNED_LEFT); @@ -5889,8 +5889,8 @@ void GuiCheats::iconloadcheck() bool GuiCheats::autoattachcheck() { std::stringstream filenoiconStr; - filenoiconStr << EDIZON_DIR "/autoattach.txt"; - if (access(filenoiconStr.str().c_str(), F_OK) == 0) + filenoiconStr << EDIZON_DIR "/noautoattach.txt"; + if (access(filenoiconStr.str().c_str(), F_OK) != 0) { if (m_debugger->m_dmnt) dmntchtForceOpenCheatProcess();