# HG changeset patch # User Matti Hamalainen # Date 1526066693 -10800 # Node ID 62ede0de6ab04fb7721656a8fe777a72e34b2236 # Parent 7bbf4b41fc33b725a32e78f4efdb2ae9a138a3e7 Fix an error message, should be "Encode", not "Decode". diff -r 7bbf4b41fc33 -r 62ede0de6ab0 tools/lib64gfx.c --- a/tools/lib64gfx.c Fri May 11 22:24:11 2018 +0300 +++ b/tools/lib64gfx.c Fri May 11 22:24:53 2018 +0300 @@ -725,7 +725,7 @@ if (!dmC64GetOpSize(op, fmt, &size)) { res = dmError(DMERR_INVALID_DATA, - "Decode op SIZE out of bounds, op #%d type=%d, offs=%d ($%04x), " + "Encode op SIZE out of bounds, op #%d type=%d, offs=%d ($%04x), " "bank=%d, size=%d ($%04x) vs. allocated %d ($%04x)\n", i, op->type, op->offs, op->offs, op->bank, size, size, op->size, op->size); goto err;