diff --git a/BeefRT/dbg/gc.cpp b/BeefRT/dbg/gc.cpp index 1f04058a..77de08c6 100644 --- a/BeefRT/dbg/gc.cpp +++ b/BeefRT/dbg/gc.cpp @@ -1137,7 +1137,7 @@ void BFGC::ProcessSweepInfo() //::MessageBoxA(NULL, "Leak", "Leak", MB_OK); //#if 0 - Beefy::StringT<1024> errorStr = StrFormat("%d object memory leak%s detected, details in Output panel.", + Beefy::StringT<1024> errorStr = StrFormat("%d object memory leak%s detected.\nMouse over an 'i' icon in the Output panel to view a leaked object and its allocation stack trace.", mSweepInfo.mLeakCount, (mSweepInfo.mLeakCount != 1) ? "s" : ""); gDbgErrorString = errorStr; gDbgErrorString += "\n"; diff --git a/BeefRT/dbg/gc_raw.cpp b/BeefRT/dbg/gc_raw.cpp index 8ebbc1dc..e02a54bf 100644 --- a/BeefRT/dbg/gc_raw.cpp +++ b/BeefRT/dbg/gc_raw.cpp @@ -416,7 +416,7 @@ void BFGC::RawShutdown() if (mSweepInfo.mLeakCount > 0) { - Beefy::String errorStr = StrFormat("%d raw memory leak%s detected, details in Output panel.", + Beefy::String errorStr = StrFormat("%d raw memory leak%s detected.\nMouse over an 'i' icon in the Output panel to view the leaked memory or the associated allocation stack trace.", mSweepInfo.mLeakCount, (mSweepInfo.mLeakCount != 1) ? "s" : ""); gDbgErrorString = errorStr; gDbgErrorString += "\n";