diff --git a/source/arm11/filebrowser.c b/source/arm11/filebrowser.c index 445aa9b..c899f0c 100644 --- a/source/arm11/filebrowser.c +++ b/source/arm11/filebrowser.c @@ -59,7 +59,8 @@ typedef struct char *ptrs[MAX_DIR_ENTRIES]; // For fast sorting. } DirList; -const char *acf_draw(int x, int y, int width, int height, int maxwidth, u16 color, const char* text) +const char *acf_put_text(int x, int y, int width, int height, int maxwidth, u8 color, u8 placement, const char* text); +const char *acf_draw(int x, int y, int width, int height, int maxwidth, u8 color, const char* text) { return atp_put_text(x, y, width, height, maxwidth, color, ATP_PLACEMENT_LEFT, text); }