# HG changeset patch # User Matti Hamalainen # Date 1527201691 -10800 # Node ID 2a1866fd546eb1a55b4b20c21fd1356f8598bd28 # Parent ed5ccf00b959c449365f86bb0f91a01608dc6ce3 Use C64 encdec operator specified size for the element if it is larger than the default size. diff -r ed5ccf00b959 -r 2a1866fd546e tools/lib64gfx.c --- a/tools/lib64gfx.c Fri May 25 00:28:19 2018 +0300 +++ b/tools/lib64gfx.c Fri May 25 01:41:31 2018 +0300 @@ -587,6 +587,10 @@ *size = 0; } + // If the operator specified size is larger, use it. + if (op->size > *size) + *size = op->size; + return TRUE; }