[NCSF] Bump version number for the previous fixes.
--- a/README.txt
+++ b/README.txt
@@ -61,6 +61,11 @@
allocated tracks later than expected originally.
v1.10.2 - 2014-10-18 - Correctly handle SSEQ volume as well as fix other volume
issues.
+v1.10.3 - 2014-10-23 - Corrected attack rate calculation.
+ - Corrected channel allocation causing sound cutoff, with
+ lots of help from fincs.
+ - Changed Sinc interpolation window to Nuttall 3-term on
+ suggestion from kode54.
This is a Winamp plugin to play NCSF files. NCSF is a PSF-style music format that
uses SDAT files from Nintendo DS ROMs as it's "program".
--- a/src/in_ncsf/SSEQPlayer/Channel.cpp
+++ b/src/in_ncsf/SSEQPlayer/Channel.cpp
@@ -1,7 +1,7 @@
/*
* SSEQ Player - Channel structures
* By Naram Qashat (CyberBotX) [cyberbotx@cyberbotx.com]
- * Last modification on 2014-10-18
+ * Last modification on 2014-10-23
*
* Adapted from source code of FeOS Sound System
* By fincs
--- a/src/in_ncsf/SSEQPlayer/Player.cpp
+++ b/src/in_ncsf/SSEQPlayer/Player.cpp
@@ -1,7 +1,7 @@
/*
* SSEQ Player - Player structure
* By Naram Qashat (CyberBotX) [cyberbotx@cyberbotx.com]
- * Last modification on 2014-10-18
+ * Last modification on 2014-10-23
*
* Adapted from source code of FeOS Sound System
* By fincs
--- a/src/in_ncsf/SSEQPlayer/Track.cpp
+++ b/src/in_ncsf/SSEQPlayer/Track.cpp
@@ -1,7 +1,7 @@
/*
* SSEQ Player - Track structure
* By Naram Qashat (CyberBotX) [cyberbotx@cyberbotx.com]
- * Last modification on 2014-10-15
+ * Last modification on 2014-10-23
*
* Adapted from source code of FeOS Sound System
* By fincs
--- a/src/in_ncsf/XSFConfig_NCSF.cpp
+++ b/src/in_ncsf/XSFConfig_NCSF.cpp
@@ -1,7 +1,7 @@
/*
* xSF - NCSF configuration
* By Naram Qashat (CyberBotX) [cyberbotx@cyberbotx.com]
- * Last modification on 2014-10-15
+ * Last modification on 2014-10-23
*
* Partially based on the vio*sf framework
*/
@@ -21,7 +21,7 @@
unsigned XSFConfig::initSampleRate = 44100;
std::string XSFConfig::commonName = "NCSF Decoder";
-std::string XSFConfig::versionNumber = "1.10.2";
+std::string XSFConfig::versionNumber = "1.10.3";
unsigned XSFConfig_NCSF::initInterpolation = 4;
std::string XSFConfig_NCSF::initMutes = "0000000000000000";