dev89 - C64: add test/gate macro
and "don't test/gate before new note" setting
This commit is contained in:
parent
3e9c0dd066
commit
4a9855f090
6 changed files with 30 additions and 11 deletions
|
|
@ -503,6 +503,9 @@ void DivInstrument::putInsData(SafeWriter* w) {
|
|||
w->writeC(std.ex6Macro.mode);
|
||||
w->writeC(std.ex7Macro.mode);
|
||||
w->writeC(std.ex8Macro.mode);
|
||||
|
||||
// C64 no test
|
||||
w->writeC(c64.noTest);
|
||||
}
|
||||
|
||||
DivDataErrors DivInstrument::readInsData(SafeReader& reader, short version) {
|
||||
|
|
@ -1006,6 +1009,11 @@ DivDataErrors DivInstrument::readInsData(SafeReader& reader, short version) {
|
|||
std.ex8Macro.mode=reader.readC();
|
||||
}
|
||||
|
||||
// C64 no test
|
||||
if (version>=89) {
|
||||
c64.noTest=reader.readC();
|
||||
}
|
||||
|
||||
return DIV_DATA_SUCCESS;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue