comparison src/gcolour3.h @ 109:f05330267c66

Use stdint types.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 06 Oct 2014 12:59:23 +0300
parents a68786b9c74b
children
comparison
equal deleted inserted replaced
108:c91965fc33b6 109:f05330267c66
54 * depth is != 24), the array is allocated upon refresh and 54 * depth is != 24), the array is allocated upon refresh and
55 * refresh() is only called when the depth is == 24. 55 * refresh() is only called when the depth is == 24.
56 */ 56 */
57 57
58 58
59 typedef u8 pv24_t[3]; // A 24-bit pixel value 59 typedef uint8_t pv24_t[3]; // A 24-bit pixel value
60 60
61 61
62 class Game_colour_24 62 class Game_colour_24
63 { 63 {
64 public: Game_colour_24() 64 public: Game_colour_24()