Author: sagamusix
Date: Sat Jun 1 00:14:34 2024
New Revision: 20890
URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=20890
Log:
[Fix] FTM: Lower period limit was wrong.
Modified:
trunk/OpenMPT/soundlib/Load_ftm.cpp
Modified: trunk/OpenMPT/soundlib/Load_ftm.cpp
==============================================================================
--- trunk/OpenMPT/soundlib/Load_ftm.cpp Fri May 31 23:37:13 2024 (r20889)
+++ trunk/OpenMPT/soundlib/Load_ftm.cpp Sat Jun 1 00:14:34 2024 (r20890)
@@ -123,7 +123,7 @@
m_nDefaultRowsPerBeat = m_nDefaultRowsPerMeasure / 4;
m_nDefaultGlobalVolume = Util::muldivr_unsigned(fileHeader.globalVolume, MAX_GLOBAL_VOLUME, 63);
m_nMinPeriod = 3208;
- m_nMaxPeriod = 5172;
+ m_nMaxPeriod = 5376;
const bool moduleWithSamples = (fileHeader.flags & 0x01);
m_modFormat.formatName = U_("Face The Music");
|