From bb5da79264464c64e556f108170820d7714e1709 Mon Sep 17 00:00:00 2001 From: Adrien Destugues Date: Mon, 28 Nov 2016 20:24:53 +0000 Subject: [PATCH] CPC/SCR: allow 32K pictures. Set R12 so that the picture can use the full video RAM, if it is large enough. git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@2170 416bcca6-2ee7-4201-b75f-2eb2f807beb1 --- src/miscfileformats.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/miscfileformats.c b/src/miscfileformats.c index 5b1c4a70..8a32c11b 100644 --- a/src/miscfileformats.c +++ b/src/miscfileformats.c @@ -3269,7 +3269,7 @@ void Save_SCR(T_IO_Context * context) break; } - output = raw2crtc(context, cpc_mode, 7, &outsize, &r1, 0, 0); + output = raw2crtc(context, cpc_mode, 7, &outsize, &r1, 0x0C, 0); file = fopen(filename,"wb"); Write_bytes(file, output, outsize);