# HG changeset patch # User Matti Hamalainen # Date 1530115747 -10800 # Node ID ba88ff5e85ea0a7b2cdf022b29e49a326ab4b431 # Parent ade67127880695af8adcc07f3b03bcce25468ee7 Fix a silly bug in the generic c64 bitmap encoder. diff -r ade671278806 -r ba88ff5e85ea tools/lib64gfx.c --- 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;