|
From: <sag...@us...> - 2010-09-23 22:50:19
|
Revision: 718
http://modplug.svn.sourceforge.net/modplug/?rev=718&view=rev
Author: saga-games
Date: 2010-09-23 22:50:13 +0000 (Thu, 23 Sep 2010)
Log Message:
-----------
This experiment wasn't supposed to sneak in... Although it eventually maybe will.
Modified Paths:
--------------
trunk/OpenMPT/soundlib/Load_mod.cpp
Modified: trunk/OpenMPT/soundlib/Load_mod.cpp
===================================================================
--- trunk/OpenMPT/soundlib/Load_mod.cpp 2010-09-23 22:40:09 UTC (rev 717)
+++ trunk/OpenMPT/soundlib/Load_mod.cpp 2010-09-23 22:50:13 UTC (rev 718)
@@ -627,10 +627,8 @@
fwrite(ord, 128, 1, f);
// Writing signature
- if (m_nChannels == 4 && nbp < 64)
+ if (m_nChannels == 4)
lstrcpy((LPSTR)&bTab, "M.K.");
- else if (m_nChannels == 4 && nbp >= 64)
- lstrcpy((LPSTR)&bTab, "M!K!");
else
wsprintf((LPSTR)&bTab, "%luCHN", m_nChannels);
fwrite(bTab, 4, 1, f);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|