Use array for regional ratings.

This commit is contained in:
Steven Smith
2015-01-25 18:24:32 -08:00
parent df96656ff5
commit e60b6b8f23
3 changed files with 24 additions and 31 deletions
+1 -1
View File
@@ -8,8 +8,8 @@ typedef enum {
RGBA4444
} PixelFormat;
void utf8_to_utf16(u16* dst, const char* src, size_t max_len);
u16 pack_color(u8 r, u8 g, u8 b, u8 a, PixelFormat format);
u16* image_to_tiles(const char* image, u32 width, u32 height, PixelFormat format, u32* size);
void utf8_to_utf16(u16* dst, const char* src, size_t max_len);
#endif