From: <man...@us...> - 2013-04-17 04:44:46
|
Revision: 1899 http://sourceforge.net/p/modplug/code/1899 Author: manxorist Date: 2013-04-17 04:44:37 +0000 (Wed, 17 Apr 2013) Log Message: ----------- [Fix] Opening a module which would cause some information being displayed to the user would crash since r1834. Revision Links: -------------- http://sourceforge.net/p/modplug/code/1834 Modified Paths: -------------- trunk/OpenMPT/mptrack/Moddoc.cpp Modified: trunk/OpenMPT/mptrack/Moddoc.cpp =================================================================== --- trunk/OpenMPT/mptrack/Moddoc.cpp 2013-04-16 23:35:49 UTC (rev 1898) +++ trunk/OpenMPT/mptrack/Moddoc.cpp 2013-04-17 04:44:37 UTC (rev 1899) @@ -224,7 +224,7 @@ if (GetLog().size() > 0) { CString sTemp; - sTemp.Format("File: %s\nLast saved with: %s, your version is %s\n\n%s", lpszPathName, (LPCTSTR)MptVersion::ToStr(m_SndFile.m_dwLastSavedWithVersion), MptVersion::str, GetLogString()); + sTemp.Format("File: %s\nLast saved with: %s, your version is %s\n\n%s", lpszPathName, (LPCTSTR)MptVersion::ToStr(m_SndFile.m_dwLastSavedWithVersion), MptVersion::str, GetLogString().c_str()); Reporting::Information(sTemp); ClearLog(); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |