diff options
author | Wohlstand <admin@wohlnet.ru> | 2017-10-08 17:10:04 +0300 |
---|---|---|
committer | Wohlstand <admin@wohlnet.ru> | 2017-10-08 17:10:04 +0300 |
commit | adfa9ae4cfd230baa33a57196c88e618c156c94c (patch) | |
tree | 7abe3b4a736155c15680f357bd1f4f0376039e4d /src/gen_adldata/progs_cache.h | |
parent | 685e7b200a29fdf8cc9dc5149c5173bac25caa9b (diff) | |
download | libADLMIDI-adfa9ae4cfd230baa33a57196c88e618c156c94c.tar.gz libADLMIDI-adfa9ae4cfd230baa33a57196c88e618c156c94c.tar.bz2 libADLMIDI-adfa9ae4cfd230baa33a57196c88e618c156c94c.zip |
Add support for WOPL banks format
Diffstat (limited to 'src/gen_adldata/progs_cache.h')
-rw-r--r-- | src/gen_adldata/progs_cache.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gen_adldata/progs_cache.h b/src/gen_adldata/progs_cache.h index 6502925..007c3b4 100644 --- a/src/gen_adldata/progs_cache.h +++ b/src/gen_adldata/progs_cache.h @@ -37,7 +37,7 @@ struct ins size_t insno1, insno2; unsigned char notenum; bool pseudo4op; - double fine_tune; + double voice2_fine_tune; bool operator==(const ins &b) const { @@ -45,7 +45,7 @@ struct ins && insno1 == b.insno1 && insno2 == b.insno2 && pseudo4op == b.pseudo4op - && fine_tune == b.fine_tune; + && voice2_fine_tune == b.voice2_fine_tune; } bool operator< (const ins &b) const { @@ -53,7 +53,7 @@ struct ins if(insno2 != b.insno2) return insno2 < b.insno2; if(notenum != b.notenum) return notenum < b.notenum; if(pseudo4op != b.pseudo4op) return pseudo4op < b.pseudo4op; - if(fine_tune != b.fine_tune) return fine_tune < b.fine_tune; + if(voice2_fine_tune != b.voice2_fine_tune) return voice2_fine_tune < b.voice2_fine_tune; return 0; } bool operator!=(const ins &b) const |