X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d68d85908b4f6073ae1c100abe3d9469fcd451d9..8f9643924b9ed5aa35a1b560a37c7985db42d225:/src/common/log.cpp diff --git a/src/common/log.cpp b/src/common/log.cpp index c17db339d9..e211345864 100644 --- a/src/common/log.cpp +++ b/src/common/log.cpp @@ -166,6 +166,7 @@ void wxSafeShowMessage(const wxString& title, const wxString& text) ::MessageBox(NULL, text, title, MB_OK | MB_ICONSTOP); #else wxFprintf(stderr, _T("%s: %s\n"), title.c_str(), text.c_str()); + fflush(stderr); #endif }