changeset 935:77c07853797b

Allocate somewhat larger initial encoding buffer for C64 image encoders.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 25 Feb 2015 20:07:25 +0200
parents fa15335238cf
children 5104a7c87d7b
files tools/lib64gfx.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/tools/lib64gfx.c	Wed Feb 25 19:59:28 2015 +0200
+++ b/tools/lib64gfx.c	Wed Feb 25 20:07:25 2015 +0200
@@ -886,7 +886,7 @@
     if (fmt->size > 0)
         *plen = allocated = fmt->size;
     else
-        allocated = 8 * 1024;
+        allocated = 16 * 1024;
 
     if ((buf = dmMalloc(allocated)) == NULL)
     {