| ... | ... |
@@ -59,6 +59,8 @@ Version History |
| 59 | 59 |
v1.10.1 - 2014-10-15 - Moved track allocation into the SSEQ command handler on a |
| 60 | 60 |
suggestion from fincs when I had found a sequence that |
| 61 | 61 |
allocated tracks later than expected originally. |
| 62 |
+v1.10.2 - 2014-10-18 - Correctly handle SSEQ volume as well as fix other volume |
|
| 63 |
+ issues. |
|
| 62 | 64 |
|
| 63 | 65 |
This is a Winamp plugin to play NCSF files. NCSF is a PSF-style music format that |
| 64 | 66 |
uses SDAT files from Nintendo DS ROMs as it's "program". |
| ... | ... |
@@ -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.1"; |
|
| 24 |
+std::string XSFConfig::versionNumber = "1.10.2"; |
|
| 25 | 25 |
unsigned XSFConfig_NCSF::initInterpolation = 4; |
| 26 | 26 |
std::string XSFConfig_NCSF::initMutes = "0000000000000000"; |
| 27 | 27 |
|