| ... | ... |
@@ -69,6 +69,8 @@ v1.10.3 - 2014-10-23 - Corrected attack rate calculation. |
| 69 | 69 |
v1.11 - 2014-10-27 - Utilize the PLAYER blocks in the SDAT if they exist. |
| 70 | 70 |
- Sinc modification from kode54, only the sinc pulse should |
| 71 | 71 |
scale, not the window. |
| 72 |
+v1.11.1 - 2014-12-09 - Fixed unsigned underflow with a loop offset of 0 on an |
|
| 73 |
+ ADPCM SWAV. |
|
| 72 | 74 |
|
| 73 | 75 |
This is a Winamp plugin to play NCSF files. NCSF is a PSF-style music format that |
| 74 | 76 |
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-10-25 |
|
| 4 |
+ * Last modification on 2014-12-09 |
|
| 5 | 5 |
* |
| 6 | 6 |
* Partially based on the vio*sf framework |
| 7 | 7 |
*/ |
| ... | ... |
@@ -21,7 +21,7 @@ enum |
| 21 | 21 |
|
| 22 | 22 |
unsigned XSFConfig::initSampleRate = 44100; |
| 23 | 23 |
std::string XSFConfig::commonName = "NCSF Decoder"; |
| 24 |
-std::string XSFConfig::versionNumber = "1.11"; |
|
| 24 |
+std::string XSFConfig::versionNumber = "1.11.1"; |
|
| 25 | 25 |
unsigned XSFConfig_NCSF::initInterpolation = 4; |
| 26 | 26 |
std::string XSFConfig_NCSF::initMutes = "0000000000000000"; |
| 27 | 27 |
|