From: <sag...@us...> - 2015-03-01 21:58:16
|
Revision: 4803 http://sourceforge.net/p/modplug/code/4803 Author: saga-games Date: 2015-03-01 21:58:09 +0000 (Sun, 01 Mar 2015) Log Message: ----------- [Fix] Missing reference to Load_plm.cpp in autotools makefile [Mod] Loading PLM files as S3M is just enough. Modified Paths: -------------- trunk/OpenMPT/build/autotools/Makefile.am trunk/OpenMPT/soundlib/Sndfile.cpp Modified: trunk/OpenMPT/build/autotools/Makefile.am =================================================================== --- trunk/OpenMPT/build/autotools/Makefile.am 2015-03-01 21:48:01 UTC (rev 4802) +++ trunk/OpenMPT/build/autotools/Makefile.am 2015-03-01 21:58:09 UTC (rev 4803) @@ -147,6 +147,7 @@ libopenmpt_la_SOURCES += soundlib/Load_mt2.cpp libopenmpt_la_SOURCES += soundlib/Load_mtm.cpp libopenmpt_la_SOURCES += soundlib/Load_okt.cpp +libopenmpt_la_SOURCES += soundlib/Load_plm.cpp libopenmpt_la_SOURCES += soundlib/Load_psm.cpp libopenmpt_la_SOURCES += soundlib/Load_ptm.cpp libopenmpt_la_SOURCES += soundlib/Load_s3m.cpp Modified: trunk/OpenMPT/soundlib/Sndfile.cpp =================================================================== --- trunk/OpenMPT/soundlib/Sndfile.cpp 2015-03-01 21:48:01 UTC (rev 4802) +++ trunk/OpenMPT/soundlib/Sndfile.cpp 2015-03-01 21:58:09 UTC (rev 4803) @@ -1331,6 +1331,7 @@ case MOD_TYPE_DSM: case MOD_TYPE_AMF: case MOD_TYPE_MTM: + case MOD_TYPE_PLM: return MOD_TYPE_S3M; case MOD_TYPE_AMS: case MOD_TYPE_AMS2: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |