C64: fix overlord

after more than one year
This commit is contained in:
tildearrow 2023-07-06 02:20:22 -05:00
parent 3b151a78a5
commit 61335fb09b

View file

@ -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: