Fix Mac build.

This commit is contained in:
Steveice10
2015-09-20 15:39:39 -07:00
parent 15a3c8ab1e
commit 2d42265ebe
3 changed files with 4 additions and 1 deletions

View File

@@ -33,6 +33,8 @@ u16 pack_color(u8 r, u8 g, u8 b, u8 a, PixelFormat format) {
a >>= 4;
return r << 12 | g << 8 | b << 4 | a;
}
return 0;
}
u8* load_image(const char* image, u32 width, u32 height) {