From 7d8ebb9cd059d6a7febacf1dd3c96b6b15c8de22 Mon Sep 17 00:00:00 2001 From: Thomas Bernard Date: Sat, 27 Apr 2019 13:11:43 +0200 Subject: [PATCH] GPX debug log of background and border colors our C64 multicolor constraint code assumes background color #0 which is bad :( it needs improvement ! --- src/miscfileformats.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/miscfileformats.c b/src/miscfileformats.c index e027175b..e8f8289a 100644 --- a/src/miscfileformats.c +++ b/src/miscfileformats.c @@ -4198,7 +4198,7 @@ void Load_GPX(T_IO_Context * context) screen = p; p += screensize; - (void)border; + GFX2_Log(GFX2_DEBUG, "background color #%d, border color #%d\n", (int)background, (int)border); Load_C64_multi(context, bitmap, screen, color, background); Set_image_mode(context, (mode & 1) ? IMAGE_MODE_C64MULTI : IMAGE_MODE_C64HIRES); }