--- hatari/src/convert/spec320x32.c 2019/04/09 08:47:32 1.1.1.3 +++ hatari/src/convert/spec320x32.c 2019/04/09 08:48:56 1.1.1.4 @@ -12,9 +12,14 @@ static void ConvertSpec512_320x32Bit(voi Uint32 *edi, *ebp; Uint32 *esi; Uint32 eax, ebx, ecx, edx; - Uint32 pixelspace[4]; /* Workspace to store pixels to so can print in right order for Spec512 */ + Uint32 pixelspace[5]; /* Workspace to store pixels to so can print in right order for Spec512 */ int y, x; + /* on x86, unaligned access macro touches also + * next byte, zero it for code checkers + */ + pixelspace[4] = 0; + Spec512_StartFrame(); /* Start frame, track palettes */ edx = 0; /* Clear index for loop */