From: <sag...@us...> - 2015-03-29 14:45:52
|
Revision: 4911 http://sourceforge.net/p/modplug/code/4911 Author: saga-games Date: 2015-03-29 14:45:47 +0000 (Sun, 29 Mar 2015) Log Message: ----------- [Fix] 669 files weren't played correctly in libopenmpt. Modified Paths: -------------- trunk/OpenMPT/soundlib/Snd_fx.cpp Modified: trunk/OpenMPT/soundlib/Snd_fx.cpp =================================================================== --- trunk/OpenMPT/soundlib/Snd_fx.cpp 2015-03-29 01:18:09 UTC (rev 4910) +++ trunk/OpenMPT/soundlib/Snd_fx.cpp 2015-03-29 14:45:47 UTC (rev 4911) @@ -5234,7 +5234,7 @@ //-------------------------------------------------------------------- { if (!period) return 0; - if (GetType() & (MOD_TYPE_MED|MOD_TYPE_MOD|MOD_TYPE_DIGI|MOD_TYPE_MTM|MOD_TYPE_669|MOD_TYPE_AMF0)) + if (GetType() & (MOD_TYPE_MED|MOD_TYPE_MOD|MOD_TYPE_DIGI|MOD_TYPE_MTM|MOD_TYPE_AMF0)) { return ((3546895L * 4) << FREQ_FRACBITS) / period; } else if (GetType() == MOD_TYPE_XM) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |