Message 1 of 6
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
There is a bug at line 617 of the processor:
writeBlock(clockwise ? "CWABS" : "CCWABS", iOutput.format(toUM(cy)), kOutput.format(toUM(cz)) /*, xOutput.format(toUM(x))*/, yOutput.format(toUM(y)), zOutput.format(toUM(z)));
Should be remplace by:
writeBlock(clockwise ? "CWABS" : "CCWABS", jOutput.format(toUM(cy)), kOutput.format(toUM(cz)) /*, xOutput.format(toUM(x))*/, yOutput.format(toUM(y)), zOutput.format(toUM(z)));
jOutput instead of iOutput for the first cy variable.
Solved! Go to Solution.