From: <sag...@us...> - 2013-04-21 20:57:33
|
Revision: 1929 http://sourceforge.net/p/modplug/code/1929 Author: saga-games Date: 2013-04-21 20:57:27 +0000 (Sun, 21 Apr 2013) Log Message: ----------- [Fix] I can't believe this Rxy stuff was still wrong... or can I? Modified Paths: -------------- trunk/OpenMPT/soundlib/Snd_fx.cpp Modified: trunk/OpenMPT/soundlib/Snd_fx.cpp =================================================================== --- trunk/OpenMPT/soundlib/Snd_fx.cpp 2013-04-21 19:47:37 UTC (rev 1928) +++ trunk/OpenMPT/soundlib/Snd_fx.cpp 2013-04-21 20:57:27 UTC (rev 1929) @@ -4128,8 +4128,9 @@ // Here are some really stupid things FT2 does on the first tick. // Test case: RetrigTick0.xm if(chn.rowCommand.instr > 0 && chn.rowCommand.IsNoteOrEmpty()) retrigCount = 1; - if(chn.rowCommand.volcmd == VOLCMD_VOLUME) + if(chn.rowCommand.volcmd == VOLCMD_VOLUME && chn.rowCommand.vol != 0) { + // I guess this condition simply checked if the volume byte was != 0 in FT2. chn.nRetrigCount = retrigCount; return; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |