Revision: 187
http://svn.sourceforge.net/modplug/?rev=187&view=rev
Author: relabsoluness
Date: 2007-05-25 15:09:32 -0700 (Fri, 25 May 2007)
Log Message:
-----------
. <Relabs> Fixed 'cleanup samples' - yet another ridiculous bug from the 'RC3' branch.
Modified Paths:
--------------
trunk/OpenMPT/mptrack/Modedit.cpp
Modified: trunk/OpenMPT/mptrack/Modedit.cpp
===================================================================
--- trunk/OpenMPT/mptrack/Modedit.cpp 2007-05-18 17:54:56 UTC (rev 186)
+++ trunk/OpenMPT/mptrack/Modedit.cpp 2007-05-25 22:09:32 UTC (rev 187)
@@ -36,7 +36,7 @@
if(m_SndFile.m_nType == MOD_TYPE_MPT)
{
- if(::MessageBox(NULL, "Convertion from MPT to any other modtype makes certain features unavailable and is not assured to work properly; Do the convertion anyway? If yes, backupping the mod might be a good idea",
+ if(::MessageBox(NULL, "Convertion from MPTm to any other modtype makes certain features unavailable and is not guaranteed to work properly; Do the convertion anyway?",
"Notice", MB_YESNO) != IDYES)
return FALSE;
}
@@ -710,7 +710,7 @@
}
}
EndWaitCursor();
- if (nExt && !(m_SndFile.m_nType & MOD_TYPE_IT) && (m_SndFile.m_dwSongFlags&SONG_ITPROJECT))
+ if (nExt && !((m_SndFile.m_nType & MOD_TYPE_IT) && (m_SndFile.m_dwSongFlags&SONG_ITPROJECT)))
{ //We don't remove an instrument's unused samples in an ITP.
wsprintf(s, "OpenMPT detected %d sample(s) referenced by an instrument,\n"
"but not used in the song. Do you want to remove them ?", nExt);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|