mitsu70x: On k60/305, only override header multicut when it's 0.
This commit is contained in:
parent
047f60ed46
commit
1cf5793669
|
@ -1188,8 +1188,8 @@ skip_status:
|
|||
#if 1 // XXX is this actually needed?
|
||||
if ((ctx->type == P_MITSU_K60 || ctx->type == P_KODAK_305) &&
|
||||
ctx->cols == 0x0748 &&
|
||||
ctx->rows == 0x04c2) {
|
||||
hdr->multicut = 1; // XXX only if print count even?
|
||||
ctx->rows == 0x04c2 && !hdr->multicut) {
|
||||
hdr->multicut = 1;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -1476,7 +1476,7 @@ static int mitsu70x_cmdline_arg(void *vctx, int argc, char **argv)
|
|||
/* Exported */
|
||||
struct dyesub_backend mitsu70x_backend = {
|
||||
.name = "Mitsubishi CP-D70/D707/K60/D80",
|
||||
.version = "0.43WIP",
|
||||
.version = "0.44WIP",
|
||||
.uri_prefix = "mitsu70x",
|
||||
.cmdline_usage = mitsu70x_cmdline,
|
||||
.cmdline_arg = mitsu70x_cmdline_arg,
|
||||
|
|
Loading…
Reference in a new issue