dev167 - fix TL macro

previously, 127 mapped to TL 0
but now 127 maps to TL 127

yeah, the graph will look inverted I know...
This commit is contained in:
tildearrow 2023-08-21 23:57:07 -05:00
parent b35235b82e
commit 54934dcfc9
16 changed files with 32 additions and 16 deletions

View file

@ -436,7 +436,7 @@ void DivPlatformOPL::tick(bool sysTick) {
}
if (m.tl.had) {
op.tl=63-m.tl.val;
op.tl=m.tl.val&63;
}
if (m.ksl.had) {
op.ksl=m.ksl.val;