comparison tools/lib64gfx.c @ 1632:2a1866fd546e

Use C64 encdec operator specified size for the element if it is larger than the default size.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 25 May 2018 01:41:31 +0300
parents ed5ccf00b959
children 9d9a0e852b3d
comparison
equal deleted inserted replaced
1631:ed5ccf00b959 1632:2a1866fd546e
584 break; 584 break;
585 585
586 default: 586 default:
587 *size = 0; 587 *size = 0;
588 } 588 }
589
590 // If the operator specified size is larger, use it.
591 if (op->size > *size)
592 *size = op->size;
589 593
590 return TRUE; 594 return TRUE;
591 } 595 }
592 596
593 597