First post, by clearcase
clearcase
Offline
Rank
Newbie
Hello.
Complete outsider here. Just looking through munt mt32emu source code and in Synth.cpp noticed in Synth::loadPCMROM it has:
int order[16] = {0, 9, 1, 2, 3, 4, 5, 6, 7, 10, 11, 12, 13, 14, 15, 8};
with the loop:
for (int u = 0; u < 15; u++) {
...
}
so it's only accessing index 0-14 rather than 0-15. No idea if this is intensional so just ignore this if so.