diff --git a/Makefile b/Makefile index bbe5275f..9dafdf58 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,7 @@ include $(DEVKITPRO)/libnx/switch_rules #--------------------------------------------------------------------------------- VERSION_MAJOR := 3 VERSION_MINOR := 7 -VERSION_MICRO := 4 +VERSION_MICRO := 4a NIGHTLY := APP_TITLE := EdiZon SE diff --git a/source/guis/gui_cheats.cpp b/source/guis/gui_cheats.cpp index d7a9fe06..f98aeef2 100644 --- a/source/guis/gui_cheats.cpp +++ b/source/guis/gui_cheats.cpp @@ -597,7 +597,7 @@ void GuiCheats::draw() Gui::drawTextAligned(font14, 700, 142, currTheme.textColor, "Others", ALIGNED_LEFT); ss.str(""); - ss << "EdiZon SE : 3.7.4"; + ss << "EdiZon SE : 3.7.4a"; if (m_32bitmode) ss << " 32 bit pointer mode"; Gui::drawTextAligned(font14, 900, 62, currTheme.textColor, ss.str().c_str(), ALIGNED_LEFT); @@ -5874,7 +5874,7 @@ void GuiCheats::testlz() PCDump2->addData(outbuffer, count); float r = (float)count / (float)bufferSize; - printf("Index = %lx , End LZ bufferSize = %lx , outsize = %x , ration = %f\n",index, bufferSize, count, r); + printf("Index = %lx , End LZ bufferSize = %lx , outsize = %lx , ration = %f\n",index, bufferSize, count, r); index += bufferSize; total +=count; } @@ -5883,7 +5883,7 @@ void GuiCheats::testlz() time_t unixTime2 = time(NULL); printf("%s%ld\n", "Stop Time ", unixTime2 - unixTime1); float r = (float) total / (float) S; - printf("Size = %lx , outsize = %x , ration = %f\n", S, total, r); + printf("Size = %lx , outsize = %lx , ration = %f\n", S, total, r); delete PCDump; PCDump2->flushBuffer(); delete PCDump2; diff --git a/source/helpers/title.cpp b/source/helpers/title.cpp index ffbc3332..6c9a21c4 100644 --- a/source/helpers/title.cpp +++ b/source/helpers/title.cpp @@ -18,7 +18,7 @@ Title::Title(FsSaveDataInfo& saveInfo) { } memset(buf.get(), 0, sizeof(NsApplicationControlData)); - rc = nsGetApplicationControlData(NsApplicationControlSource_Storage, saveInfo.application_id, buf.get(), sizeof(NsApplicationControlData), &outsize); + rc = nsGetApplicationControlData(NsApplicationControlSource_Storage, saveInfo.application_id & 0xFFFFFFFFFFFFFFF0, buf.get(), sizeof(NsApplicationControlData), &outsize); if (R_FAILED(rc)) { m_errorCode = 2; return;