Skip to content

Commit

Permalink
use dmp0 for jump back
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvita committed Nov 22, 2021
1 parent 0710926 commit 2768ed9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
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 := 25e
VERSION_MICRO := 25f
NIGHTLY :=

APP_TITLE := EdiZon SE
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.25e"
#define VERSION_STRING "3.8.25f"
6 changes: 5 additions & 1 deletion source/guis/gui_cheats.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down Expand Up @@ -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)
{
Expand Down Expand Up @@ -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<MemoryInfo> 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)
Expand Down

0 comments on commit 2768ed9

Please sign in to comment.