mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-16 01:35:07 +00:00
Allow accessing all 256 waves in macros
This commit is contained in:
parent
e0bccc8c14
commit
22dd22ca33
1 changed files with 2 additions and 2 deletions
|
@ -3483,7 +3483,7 @@ void FurnaceGUI::drawInsEdit() {
|
||||||
}
|
}
|
||||||
|
|
||||||
const char* waveLabel="Waveform";
|
const char* waveLabel="Waveform";
|
||||||
int waveMax=(ins->type==DIV_INS_AY || ins->type==DIV_INS_AY8930 || ins->type==DIV_INS_VERA)?3:63;
|
int waveMax=(ins->type==DIV_INS_AY || ins->type==DIV_INS_AY8930 || ins->type==DIV_INS_VERA)?3:255;
|
||||||
bool bitMode=false;
|
bool bitMode=false;
|
||||||
if (ins->type==DIV_INS_C64 || ins->type==DIV_INS_AY || ins->type==DIV_INS_AY8930 || ins->type==DIV_INS_SAA1099) {
|
if (ins->type==DIV_INS_C64 || ins->type==DIV_INS_AY || ins->type==DIV_INS_AY8930 || ins->type==DIV_INS_SAA1099) {
|
||||||
bitMode=true;
|
bitMode=true;
|
||||||
|
@ -3520,7 +3520,7 @@ void FurnaceGUI::drawInsEdit() {
|
||||||
if (ins->type==DIV_INS_X1_010) {
|
if (ins->type==DIV_INS_X1_010) {
|
||||||
dutyMax=0;
|
dutyMax=0;
|
||||||
ex1Max=7;
|
ex1Max=7;
|
||||||
ex2Max=63;
|
ex2Max=255;
|
||||||
ex2Bit=false;
|
ex2Bit=false;
|
||||||
}
|
}
|
||||||
if (ins->type==DIV_INS_N163) {
|
if (ins->type==DIV_INS_N163) {
|
||||||
|
|
Loading…
Reference in a new issue