PokittoLib is the library needed for programming the Pokitto DIY game console (www.pokitto.com)

Committer:
spinal
Date:
Sun Nov 18 15:47:54 2018 +0000
Revision:
64:6e6c6c2b664e
Parent:
31:f4b9b85c7b62
added fix for directrectangle()

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Pokitto 31:f4b9b85c7b62 1 #ifndef POK_PALETTES_H
Pokitto 31:f4b9b85c7b62 2 #define POK_PALETTES_H
Pokitto 31:f4b9b85c7b62 3
Pokitto 31:f4b9b85c7b62 4 #include "Pokitto_settings.h"
Pokitto 31:f4b9b85c7b62 5
Pokitto 31:f4b9b85c7b62 6 extern const unsigned char paletteDefault[];
Pokitto 31:f4b9b85c7b62 7 extern const unsigned char paletteCGA[];
Pokitto 31:f4b9b85c7b62 8 extern const unsigned char paletteNeon[];
Pokitto 31:f4b9b85c7b62 9 extern const unsigned char palettePico[];
Pokitto 31:f4b9b85c7b62 10 extern const unsigned char paletteCopper[];
Pokitto 31:f4b9b85c7b62 11 extern const unsigned char paletteAction[];
Pokitto 31:f4b9b85c7b62 12 extern const unsigned char paletteMagma[];
Pokitto 31:f4b9b85c7b62 13 extern const unsigned char paletteRainbow[];
Pokitto 31:f4b9b85c7b62 14 extern const unsigned char paletteMono[];
Pokitto 31:f4b9b85c7b62 15 extern const unsigned char paletteGameboy[];
Pokitto 31:f4b9b85c7b62 16 extern const unsigned char paletteZXSpec[];
Pokitto 31:f4b9b85c7b62 17 extern const unsigned char paletteDB16[];
Pokitto 31:f4b9b85c7b62 18
Pokitto 31:f4b9b85c7b62 19
Pokitto 31:f4b9b85c7b62 20 #define POK_DEFAULT_PALETTE paletteCGA
Pokitto 31:f4b9b85c7b62 21
Pokitto 31:f4b9b85c7b62 22 #endif
Pokitto 31:f4b9b85c7b62 23
Pokitto 31:f4b9b85c7b62 24
Pokitto 31:f4b9b85c7b62 25