discardData static method
Implementation
static void discardData(BinaryReader reader, int size) {
if (size % 10 != 0) {
throw "The modulator list is invalid.";
}
reader.skip(size);
}
static void discardData(BinaryReader reader, int size) {
if (size % 10 != 0) {
throw "The modulator list is invalid.";
}
reader.skip(size);
}