*** empty log message ***

merge-requests/1/head
Oliver Rauch 2004-10-16 08:55:51 +00:00
rodzic c131dff834
commit a776ea2311
2 zmienionych plików z 13 dodań i 0 usunięć

Wyświetl plik

@ -1,3 +1,6 @@
2004-10-16 Oliver Rauch <Oliver.Rauch@Rauch-DOmain.DE>
* backend/umax.c: added default options for Linotype OPAL2
2004-10-15 Henning Meier-Geinitz <henning@meier-geinitz.de>
* doc/descriptions/unsupported.desc: Added various scanners.

Wyświetl plik

@ -3023,6 +3023,16 @@ static void umax_correct_inquiry(Umax_Device *dev, char *vendor, char *product,
dev->calibration_area = UMAX_CALIBRATION_AREA_CCD;
}
}
else if (!strncmp(product, "OPAL2 ", 6)) /* looks like a Mirage II */
{
DBG(DBG_warning,"setting up special options for %s\n", product);
if (dev->gamma_lsb_padded == -1) /* nothing defined in umax.conf and not by backend */
{
DBG(DBG_warning," - 16 bit gamma table is created lsb padded\n");
dev->gamma_lsb_padded = 1;
}
}
}
else if (!strncmp(vendor, "Linotype ", 9))
{