1
0
mirror of https://github.com/pdewacht/brlaser synced 2025-04-06 21:06:43 +02:00

Bug Owl-Maintain#23

Corrected the Duplex & Tumble Check:
 - swapped the PLC values for duplex and tumble.

Thanks @wmlapierre
This commit is contained in:
Benjamin Lowell 2025-01-10 17:32:12 -05:00
parent 911a518f4e
commit f277899eec

View File

@ -78,9 +78,9 @@ void job::write_page_header() {
fputs("\033E", out_);
fprintf(out_, "\033&l%dX", std::max(1, page_params_.num_copies));
if (page_params_.duplex && page_params_.tumble) {
if (page_params_.duplex) {
fputs("\033&l2S", out_);
} else if (page_params_.duplex) {
} else if (page_params_.tumble) {
fputs("\033&l1S", out_);
} else {
fputs("\033&l0S", out_);