aboutsummaryrefslogtreecommitdiffstats
path: root/src/ppu.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ppu.h')
-rw-r--r--src/ppu.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ppu.h b/src/ppu.h
index 852c207..1c427c3 100644
--- a/src/ppu.h
+++ b/src/ppu.h
@@ -15,6 +15,6 @@ typedef unsigned short Uint16;
15typedef unsigned int Uint32; 15typedef unsigned int Uint32;
16 16
17int ppu_init(void); 17int ppu_init(void);
18void ppu_pixel(Uint8 layer, Uint16 x, Uint16 y, Uint8 color); 18void ppu_pixel(Uint8 *layer, Uint16 x, Uint16 y, Uint8 color);
19void ppu_1bpp(Uint8 layer, Uint16 x, Uint16 y, Uint8 *sprite, Uint8 color, Uint8 flipx, Uint8 flipy); 19void ppu_1bpp(Uint8 *layer, Uint16 x, Uint16 y, Uint8 *sprite, Uint8 color, Uint8 flipx, Uint8 flipy);
20void ppu_2bpp(Uint8 layer, Uint16 x, Uint16 y, Uint8 *sprite, Uint8 color, Uint8 flipx, Uint8 flipy); 20void ppu_2bpp(Uint8 *layer, Uint16 x, Uint16 y, Uint8 *sprite, Uint8 color, Uint8 flipx, Uint8 flipy);