Apparently the debug build has not been freeing memory since 2008. Undo that.

This commit is contained in:
Shawn Hoffman
2014-05-08 00:58:55 -07:00
parent b4e1ac5f08
commit fa65eeb492
2 changed files with 0 additions and 22 deletions

View File

@ -232,12 +232,6 @@ bool DolphinApp::OnInit()
}
#endif // wxUSE_CMDLINE_PARSER
#if defined _DEBUG && defined _WIN32
int tmpflag = _CrtSetDbgFlag(_CRTDBG_REPORT_FLAG);
tmpflag |= _CRTDBG_DELAY_FREE_MEM_DF;
_CrtSetDbgFlag(tmpflag);
#endif
// Register message box and translation handlers
RegisterMsgAlertHandler(&wxMsgAlert);
RegisterStringTranslator(&wxStringTranslator);