From: <sag...@us...> - 2013-04-11 14:58:55
|
Revision: 1837 http://sourceforge.net/p/modplug/code/1837 Author: saga-games Date: 2013-04-11 14:58:49 +0000 (Thu, 11 Apr 2013) Log Message: ----------- [Fix] Switching to the volume envelope in the instrument editor broke some revisions ago. [Mod] OpenMPT: Version is now 1.22.01.02 Modified Paths: -------------- trunk/OpenMPT/common/version.h trunk/OpenMPT/mptrack/View_ins.cpp Modified: trunk/OpenMPT/common/version.h =================================================================== --- trunk/OpenMPT/common/version.h 2013-04-11 14:47:48 UTC (rev 1836) +++ trunk/OpenMPT/common/version.h 2013-04-11 14:58:49 UTC (rev 1837) @@ -19,7 +19,7 @@ #define VER_MAJORMAJOR 1 #define VER_MAJOR 22 #define VER_MINOR 01 -#define VER_MINORMINOR 01 +#define VER_MINORMINOR 02 //Creates version number from version parts that appears in version string. //For example MAKE_VERSION_NUMERIC(1,17,02,28) gives version number of Modified: trunk/OpenMPT/mptrack/View_ins.cpp =================================================================== --- trunk/OpenMPT/mptrack/View_ins.cpp 2013-04-11 14:47:48 UTC (rev 1836) +++ trunk/OpenMPT/mptrack/View_ins.cpp 2013-04-11 14:58:49 UTC (rev 1837) @@ -195,7 +195,7 @@ Notification::Type type; if ((!pModDoc) || (nIns < 1) || (nIns >= MAX_INSTRUMENTS)) return FALSE; - if (nEnv) m_nEnv = nEnv; + m_nEnv = nEnv; m_nInstrument = nIns; switch(m_nEnv) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |