changeset 1918:ba88ff5e85ea

Fix a silly bug in the generic c64 bitmap encoder.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 27 Jun 2018 19:09:07 +0300
parents ade671278806
children f0225a52afce
files tools/lib64gfx.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/tools/lib64gfx.c	Wed Jun 27 18:36:26 2018 +0300
+++ b/tools/lib64gfx.c	Wed Jun 27 19:09:07 2018 +0300
@@ -1134,11 +1134,11 @@
                                 break;
 
                             case DO_SET_MEM:
-                                // This operation makes no sense, so do nothing
+                                // This operation makes no sense in encoding, so do nothing
                                 break;
 
                             case DO_SET_OP:
-                                dmMemset(dst, op->offs, size);
+                                // This operation makes no sense in encoding, so do nothing
                                 break;
                         }
                         break;