# HG changeset patch # User Matti Hamalainen # Date 1506276602 -10800 # Node ID 3bcf02e5a3754f4fda41e3b4283418c2fdef9406 # Parent 558776ee96039987e0ce0bd2fc3e3a2955a3f7b4 Oops, missed some necessary changes to gfxconv due to lib64gfx changes. Fixed. diff -r 558776ee9603 -r 3bcf02e5a375 tools/gfxconv.c --- a/tools/gfxconv.c Sun Sep 24 20:48:52 2017 +0300 +++ b/tools/gfxconv.c Sun Sep 24 21:10:02 2017 +0300 @@ -1046,7 +1046,7 @@ { dmMsg(1, "Upconverting multicolor to FLI.\n"); int i; - for (i = 1; i < C64_SCR_MAX_BANK; i++) + for (i = 1; i < image->nbanks; i++) { memcpy(image->color[i], image->color[0], C64_SCR_COLOR_SIZE); memcpy(image->screen[i], image->screen[0], C64_SCR_SCREEN_SIZE);