diff --git a/Makefile b/Makefile index 0c71717..fc4fe98 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,7 @@ include $(DEVKITPRO)/libnx/switch_rules #--------------------------------------------------------------------------------- VERSION_MAJOR := 3 VERSION_MINOR := 8 -VERSION_MICRO := 25e +VERSION_MICRO := 25f NIGHTLY := APP_TITLE := EdiZon SE diff --git a/include/version.h b/include/version.h index 873f48e..e0fc9d2 100644 --- a/include/version.h +++ b/include/version.h @@ -1 +1 @@ -#define VERSION_STRING "3.8.25e" \ No newline at end of file +#define VERSION_STRING "3.8.25f" \ No newline at end of file diff --git a/source/guis/gui_cheats.cpp b/source/guis/gui_cheats.cpp index 11e8261..bc1324e 100644 --- a/source/guis/gui_cheats.cpp +++ b/source/guis/gui_cheats.cpp @@ -425,7 +425,7 @@ if (!(m_debugger->m_dmnt)){ filebuildIDStr << m_edizon_dir + "/" << buildIDStr.str() << ".dat"; else filebuildIDStr << EDIZON_DIR "/" << buildIDStr.str() << ".dat"; - m_PCDump_filename << EDIZON_DIR "/" << buildIDStr.str() << ".dmp1"; + m_PCDump_filename << EDIZON_DIR "/" << buildIDStr.str() << ".dmp0"; } if (Config::getConfig()->deletebookmark) { @@ -9184,6 +9184,8 @@ bool GuiCheats::addstaticcodetofile(u64 index) void GuiCheats::PCdump() { bool ledOn = true; + m_PCDump_filename.seekp(-1, std::ios_base::end); + m_PCDump_filename << 1; u8 j = 1; while (access(m_PCDump_filename.str().c_str(), F_OK) == 0) { @@ -9233,6 +9235,8 @@ void GuiCheats::PCdump() void GuiCheats::searchMemoryAddressesPrimary2(Debugger *debugger, searchValue_t searchValue1, searchValue_t searchValue2, searchType_t searchType, searchMode_t searchMode, searchRegion_t searchRegion, MemoryDump **displayDump, std::vector memInfos) { + m_PCDump_filename.seekp(-1, std::ios_base::end); + m_PCDump_filename << 1; u8 j = 1; int k = -1; while (access(m_PCDump_filename.str().c_str(), F_OK) == 0)