mirror of
https://gitlab.com/wgp/dougal/software.git
synced 2025-12-06 12:27:07 +00:00
Fix no fire / autofire values (they're not boolean!)
This commit is contained in:
@@ -78,8 +78,8 @@ class DougalSequenceLayer extends ScatterplotLayer {
|
||||
delay_μ: d.value17.value[index] / 10,
|
||||
delay_σ: d.value18.value[index] / 10,
|
||||
delay_R: d.value19.value[index] / 10,
|
||||
nofire: d.value20.value[index] >> 4 ? true: false,
|
||||
autofire: d.value20.value[index] & 0xf ? true : false
|
||||
nofire: d.value20.value[index] >> 4,
|
||||
autofire: d.value20.value[index] & 0xf
|
||||
};
|
||||
} else {
|
||||
console.warn(`Unknown udv value ${d.udv}. No picking info`);
|
||||
|
||||
Reference in New Issue
Block a user