the root cause is that the skipping and remainder code part has a bug: const int skipChars = extraBytes / 4 should be: const int skipChars = extraBytes / 4 * 4; // truncate to dword size Have a fix here: https://github.com/sdatkinson/NeuralAmpModelerCore/pull/63
the root cause is that the skipping and remainder code part has a bug:
const int skipChars = extraBytes / 4
should be:
const int skipChars = extraBytes / 4 * 4; // truncate to dword size
Have a fix here:
#63