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

Compare commits

...

2 Commits

Author SHA1 Message Date
QORTEC
a4923ed21d
Merge f277899eecf82fe898086e80999b5513f7c8d825 into 2a49e3287c70c254e7e3ac9dabe9d6a07218c3fa 2025-01-10 22:52:40 +00:00
Benjamin Lowell
f277899eec Bug Owl-Maintain#23
Corrected the Duplex & Tumble Check:
 - swapped the PLC values for duplex and tumble.

Thanks @wmlapierre
2025-01-10 17:51:18 -05:00

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_);