mirror of
https://github.com/curioustorvald/tsvm.git
synced 2026-06-14 08:24:04 +09:00
taut: fix voleff 'v1' rendering as 'v.1'
This commit is contained in:
@@ -190,6 +190,9 @@ function buildRowCell(ptnDat, row) {
|
||||
sVolEff = ''
|
||||
sVolArg = sym.middot.repeat(2)
|
||||
}
|
||||
else if (voleff >>> 6 == 1 || voleff >>> 6 == 2) {
|
||||
sVolArg = (voleffarg & 15).hex1()
|
||||
}
|
||||
else if (voleff >>> 6 == 3) {
|
||||
if (voleffarg == 0) {
|
||||
sVolEff = sym.middot
|
||||
@@ -211,6 +214,9 @@ function buildRowCell(ptnDat, row) {
|
||||
sPanEff = ''
|
||||
sPanArg = sym.middot.repeat(2)
|
||||
}
|
||||
else if (paneff >>> 6 == 1 || paneff >>> 6 == 2) {
|
||||
sPanArg = (paneffarg & 15).hex1()
|
||||
}
|
||||
else if (paneff >>> 6 == 3) {
|
||||
if (paneffarg == 0) {
|
||||
sPanEff = sym.middot
|
||||
|
||||
Reference in New Issue
Block a user