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. reader.readS(); // format version. ignored.
type=(DivInstrumentType)reader.readC(); type=(DivInstrumentType)reader.readC();
mode=(type==DIV_INS_FM);
reader.readC(); reader.readC();
name=reader.readString(); name=reader.readString();

View File

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