From da79591afdbe44853fd0d8d7998cde65cdfeed68 Mon Sep 17 00:00:00 2001 From: anod <182859762@qq.com> Date: Sun, 2 Oct 2022 17:37:05 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0acf=5Fput=5Ftext=E7=9A=84?= =?UTF-8?q?=E5=A3=B0=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/arm11/filebrowser.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/arm11/filebrowser.c b/source/arm11/filebrowser.c index dd7120b..245d64f 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 atf_put_text(x, y, width, height, maxwidth, color, ATP_PLACEMENT_LEFT, text); }