| ... | ... |
@@ -61,6 +61,11 @@ v1.10.1 - 2014-10-15 - Moved track allocation into the SSEQ command handler on a |
| 61 | 61 |
allocated tracks later than expected originally. |
| 62 | 62 |
v1.10.2 - 2014-10-18 - Correctly handle SSEQ volume as well as fix other volume |
| 63 | 63 |
issues. |
| 64 |
+v1.10.3 - 2014-10-23 - Corrected attack rate calculation. |
|
| 65 |
+ - Corrected channel allocation causing sound cutoff, with |
|
| 66 |
+ lots of help from fincs. |
|
| 67 |
+ - Changed Sinc interpolation window to Nuttall 3-term on |
|
| 68 |
+ suggestion from kode54. |
|
| 64 | 69 |
|
| 65 | 70 |
This is a Winamp plugin to play NCSF files. NCSF is a PSF-style music format that |
| 66 | 71 |
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-15 |
|
| 4 |
+ * Last modification on 2014-10-23 |
|
| 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.10.2"; |
|
| 24 |
+std::string XSFConfig::versionNumber = "1.10.3"; |
|
| 25 | 25 |
unsigned XSFConfig_NCSF::initInterpolation = 4; |
| 26 | 26 |
std::string XSFConfig_NCSF::initMutes = "0000000000000000"; |
| 27 | 27 |
|