mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-27 15:03:01 +00:00
C64: fix overlord
after more than one year
This commit is contained in:
parent
3b151a78a5
commit
61335fb09b
1 changed files with 1 additions and 1 deletions
|
@ -377,7 +377,7 @@ int DivPlatformC64::dispatch(DivCommand c) {
|
||||||
break;
|
break;
|
||||||
case DIV_CMD_C64_CUTOFF:
|
case DIV_CMD_C64_CUTOFF:
|
||||||
if (c.value>100) c.value=100;
|
if (c.value>100) c.value=100;
|
||||||
filtCut=c.value*2047/100;
|
filtCut=(c.value+2)*2047/102;
|
||||||
updateFilter();
|
updateFilter();
|
||||||
break;
|
break;
|
||||||
case DIV_CMD_C64_FINE_CUTOFF:
|
case DIV_CMD_C64_FINE_CUTOFF:
|
||||||
|
|
Loading…
Reference in a new issue