Whoops. Missed a file in the last commit
This commit is contained in:
parent
59395684d3
commit
692b699948
|
@ -755,9 +755,13 @@ SPAN_DECLARE(int) t30_set_supported_colour_resolutions(t30_state_t *s, int suppo
|
||||||
SPAN_DECLARE(int) t30_set_supported_image_sizes(t30_state_t *s, int supported_image_sizes)
|
SPAN_DECLARE(int) t30_set_supported_image_sizes(t30_state_t *s, int supported_image_sizes)
|
||||||
{
|
{
|
||||||
/* Force the sizes which are always available */
|
/* Force the sizes which are always available */
|
||||||
s->supported_image_sizes = supported_image_sizes
|
supported_image_sizes |= (T4_SUPPORT_WIDTH_215MM | T4_SUPPORT_LENGTH_A4);
|
||||||
| T4_SUPPORT_WIDTH_215MM
|
/* Force the sizes which depend on sizes which are supported */
|
||||||
| T4_SUPPORT_LENGTH_A4;
|
if ((supported_image_sizes & T4_SUPPORT_LENGTH_UNLIMITED))
|
||||||
|
supported_image_sizes |= T4_SUPPORT_LENGTH_B4;
|
||||||
|
if ((supported_image_sizes & T4_SUPPORT_WIDTH_303MM))
|
||||||
|
supported_image_sizes |= T4_SUPPORT_WIDTH_255MM;
|
||||||
|
s->supported_image_sizes = supported_image_sizes;
|
||||||
t30_build_dis_or_dtc(s);
|
t30_build_dis_or_dtc(s);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue