From 31daa706b7290d97b4537feb5a4da87537684c25 Mon Sep 17 00:00:00 2001 From: itaych Date: Thu, 16 Apr 2020 02:28:15 +0300 Subject: [PATCH] PMG_SIZE_QUAD is 3, not 2. From "Mapping the Atari": "Size of player. POKE with zero or two for normal size (eight color clocks wide), POKE with one to double a player's width (sixteen color clocks wide), and POKE with three for quadruple width (32 color clocks wide). Each player can have its own width set." --- include/_gtia.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/_gtia.h b/include/_gtia.h index cbdf7608e..eaf6bed3e 100644 --- a/include/_gtia.h +++ b/include/_gtia.h @@ -95,7 +95,7 @@ struct __gtia_write { #define PMG_SIZE_NORMAL 0x0 /* one color clock per pixel */ #define PMG_SIZE_DOUBLE 0x1 /* two color clocks per pixel */ -#define PMG_SIZE_QUAD 0x2 /* four color clocks per pixel */ +#define PMG_SIZE_QUAD 0x3 /* four color clocks per pixel */ /* COLPM0-COLPM3, COLPF0-COLPF3, COLBK color registers */