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:
parent
b35235b82e
commit
54934dcfc9
16 changed files with 32 additions and 16 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue