We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85db762 commit 68fde5cCopy full SHA for 68fde5c
src/main/DLSFile.cpp
@@ -487,7 +487,7 @@ void DLSWave::WriteSample(vector<uint8_t> &buf, bool mono) {
487
}
488
489
void DLSWave::Write(vector<uint8_t> &buf, bool mono) {
490
- mono = false;
+ //mono = false;
491
uint32_t theDWORD;
492
uint16_t numChannels = mono ? 1 : wChannels;
493
@@ -513,4 +513,4 @@ void DLSWave::Write(vector<uint8_t> &buf, bool mono) {
513
PushTypeOnVectBE<uint32_t>(buf, 0x494E414D); //"INAM"
514
PushTypeOnVect<uint32_t>(buf, (uint32_t) name.size()); //size
515
PushBackStringOnVector(buf, name);
516
-}
+}
0 commit comments