remove mode from DivInstrument already

This commit is contained in:
tildearrow 2022-11-17 18:40:58 -05:00
parent e5bc0c06d8
commit afcc292c0c
2 changed files with 0 additions and 2 deletions

View File

@ -677,7 +677,6 @@ DivDataErrors DivInstrument::readInsData(SafeReader& reader, short version) {
reader.readS(); // format version. ignored.
type=(DivInstrumentType)reader.readC();
mode=(type==DIV_INS_FM);
reader.readC();
name=reader.readString();

View File

@ -550,7 +550,6 @@ struct DivInstrumentSNES {
struct DivInstrument {
String name;
bool mode;
DivInstrumentType type;
DivInstrumentFM fm;
DivInstrumentSTD std;