Browse code

[NCSF] Should've updated the version number before.

Naram Qashat authored on 2014/09/28 14:43:16
Showing 2 changed files
... ...
@@ -42,6 +42,9 @@ v1.7.1 - 2013-04-26 - Minor update to scale the phase offset, thanks to kode54.
42 42
                     - Corrected clamping issue which caused some clipping-like
43 43
                       effects.
44 44
 v1.8.1 - 2014-06-17 - Reverted Sinc interpolation back to the Lanczos window.
45
+  v1.9 - 2014-09-28 - Removed the Cosine, B-Spline, and Osculating
46
+                      interpolations, added 4-point and 6-point Legrange
47
+                      interpolations in their place.
45 48
 
46 49
 This is a Winamp plugin to play NCSF files. NCSF is a PSF-style music format that
47 50
 uses SDAT files from Nintendo DS ROMs as it's "program".
... ...
@@ -1,7 +1,7 @@
1 1
 /*
2 2
  * xSF - NCSF configuration
3 3
  * By Naram Qashat (CyberBotX) [cyberbotx@cyberbotx.com]
4
- * Last modification on 2014-09-24
4
+ * Last modification on 2014-09-28
5 5
  *
6 6
  * Partially based on the vio*sf framework
7 7
  */
... ...
@@ -41,7 +41,7 @@ public:
41 41
 
42 42
 unsigned XSFConfig::initSampleRate = 44100;
43 43
 std::string XSFConfig::commonName = "NCSF Decoder";
44
-std::string XSFConfig::versionNumber = "1.8.1";
44
+std::string XSFConfig::versionNumber = "1.9";
45 45
 unsigned XSFConfig_NCSF::initInterpolation = 4;
46 46
 std::string XSFConfig_NCSF::initMutes = "0000000000000000";
47 47