mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-24 13:35:11 +00:00
SoundUnit: fix order of filter bits
This commit is contained in:
parent
4bbcb2dd35
commit
61916be495
2 changed files with 2 additions and 2 deletions
|
@ -44,7 +44,7 @@ const char* DivPlatformSoundUnit::getEffectName(unsigned char effect) {
|
||||||
return "13xx: Set resonance (0 to F)";
|
return "13xx: Set resonance (0 to F)";
|
||||||
break;
|
break;
|
||||||
case 0x14:
|
case 0x14:
|
||||||
return "14xx: Set filter mode (bit 0: ring mod; bit 1: low pass; bit 2: band pass; bit 3: high pass)";
|
return "14xx: Set filter mode (bit 0: ring mod; bit 1: low pass; bit 2: high pass; bit 3: band pass)";
|
||||||
break;
|
break;
|
||||||
case 0x15:
|
case 0x15:
|
||||||
return "15xx: Set frequency sweep period low byte";
|
return "15xx: Set frequency sweep period low byte";
|
||||||
|
|
|
@ -176,7 +176,7 @@ const char* n163UpdateBits[8]={
|
||||||
};
|
};
|
||||||
|
|
||||||
const char* suControlBits[5]={
|
const char* suControlBits[5]={
|
||||||
"ring mod", "low pass", "band pass", "high pass", NULL
|
"ring mod", "low pass", "high pass", "band pass", NULL
|
||||||
};
|
};
|
||||||
|
|
||||||
const char* panBits[3]={
|
const char* panBits[3]={
|
||||||
|
|
Loading…
Reference in a new issue