Add support for supplying exiting CGFX and CWAV files to makebanner, add command for creating SMDH files.

This commit is contained in:
Steven Smith
2015-01-24 12:47:21 -08:00
parent 8b9b2f070e
commit d7e741c9b3
8 changed files with 277 additions and 69 deletions
+3 -1
View File
@@ -3,6 +3,8 @@
#include "../types.h"
u8* image_to_tiles(const char* image, u32 width, u32 height, u32* size);
u16 rgba_to_rgb565(u8 r, u8 g, u8 b, u8 a);
u16* image_to_tiles(const char* image, u32 width, u32 height, u32* size);
void utf8_to_utf16(u16* dst, const char* src, size_t max_len);
#endif