arm9: mark drawFormattedString as printf-like function

This commit is contained in:
TuxSH 2020-11-21 21:45:36 +00:00
parent c058e3f446
commit df62e1901e

View File

@ -47,4 +47,6 @@
bool loadSplash(void);
void drawCharacter(bool isTopScreen, u32 posX, u32 posY, u32 color, char character);
u32 drawString(bool isTopScreen, u32 posX, u32 posY, u32 color, const char *string);
__attribute__((format(printf,5,6)))
u32 drawFormattedString(bool isTopScreen, u32 posX, u32 posY, u32 color, const char *fmt, ...);