allow detune 4

This commit is contained in:
tildearrow 2022-03-07 22:28:20 -05:00
parent ec007b4443
commit cdd45bb18c
4 changed files with 5 additions and 5 deletions

View File

@ -42,7 +42,7 @@ static bool isOutput[8][4]={
{true ,true ,true ,true},
};
static unsigned char dtTable[8]={
7,6,5,0,1,2,3,0
7,6,5,0,1,2,3,4
};
static int orderedOps[4]={

View File

@ -35,7 +35,7 @@ static bool isOutput[8][4]={
{true ,true ,true ,true},
};
static unsigned char dtTable[8]={
7,6,5,0,1,2,3,0
7,6,5,0,1,2,3,4
};
static int orderedOps[4]={
@ -45,4 +45,4 @@ static int orderedOps[4]={
#define rWrite(a,v) if (!skipRegisterWrites) {pendingWrites[a]=v;}
#define immWrite(a,v) if (!skipRegisterWrites) {writes.emplace(a,v); if (dumpWrites) {addWrite(a,v);} }
#include "fmshared_OPN.h"
#include "fmshared_OPN.h"

View File

@ -32,7 +32,7 @@ static bool isOutput[8][4]={
{true ,true ,true ,true},
};
static unsigned char dtTable[8]={
7,6,5,0,1,2,3,0
7,6,5,0,1,2,3,4
};
static int orderedOps[4]={

View File

@ -1077,7 +1077,7 @@ void FurnaceGUI::drawInsEdit() {
ImGui::TableNextRow();
ImGui::TableNextColumn();
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
if (ImGui::SliderInt("##DT",&detune,-3,3)) { PARAMETER
if (ImGui::SliderInt("##DT",&detune,-3,4)) { PARAMETER
op.dt=detune+3;
} rightClickable
ImGui::TableNextColumn();