Fixed problem with dropout color

DEVEL_2_0_BRANCH-1
Karl Heinz Kremer 2002-12-07 12:00:15 +00:00
rodzic 08c2f84690
commit 820ac413e7
2 zmienionych plików z 11 dodań i 3 usunięć

Wyświetl plik

@ -1,3 +1,7 @@
2002-12-07 Karl Heinz Kremer <khk@khk.net>
* backend/epson.c: Fixed problem with dropout color
2002-12-06 Peter Kirchgessner <peter@kirchgessner.net>
* backend/hp.h backend/hp.c backend/hp-scl.c backend/hp.conf

Wyświetl plik

@ -16,8 +16,8 @@
*/
#define SANE_EPSON_VERSION "SANE Epson Backend v0.2.30 - 2002-11-03"
#define SANE_EPSON_BUILD 230
#define SANE_EPSON_VERSION "SANE Epson Backend v0.2.31 - 2002-11-23"
#define SANE_EPSON_BUILD 231
/*
This file is part of the SANE package.
@ -59,6 +59,7 @@
If you do not wish that, delete this exception notice. */
/*
2002-11-23 Fixed problem with dropout color.
2002-11-03 Full libusb support.
2002-10-05 Fixed problem with incorrect response to sane_get_parameters()
in certain situations.
@ -4818,7 +4819,10 @@ START_READ:
}
if (needStrangeReorder)
reorder = !reorder;
reorder = SANE_FALSE; /* reordering once is enough */
if (s->params.format != SANE_FRAME_RGB)
reorder = SANE_FALSE; /* don't reorder for BW or gray */
if (reorder)
{