summaryrefslogtreecommitdiffstats
path: root/minui/graphics.c
diff options
context:
space:
mode:
authorDees Troy <dees_troy@teamw.in>2013-09-10 15:46:29 +0200
committerGerrit Code Review <gerrit@198.50.184.117>2013-09-10 15:46:29 +0200
commitabaa9ca8f3d3b7fa9ec6454d0ff03f5351313993 (patch)
treefdaf095e6ed67689ff865d602ce53be1db10c279 /minui/graphics.c
parentMerge "another fix to ignore space then = sign" into twrp2.7 (diff)
parentHack-fix build with different system/core/charger versions (diff)
downloadandroid_bootable_recovery-abaa9ca8f3d3b7fa9ec6454d0ff03f5351313993.tar
android_bootable_recovery-abaa9ca8f3d3b7fa9ec6454d0ff03f5351313993.tar.gz
android_bootable_recovery-abaa9ca8f3d3b7fa9ec6454d0ff03f5351313993.tar.bz2
android_bootable_recovery-abaa9ca8f3d3b7fa9ec6454d0ff03f5351313993.tar.lz
android_bootable_recovery-abaa9ca8f3d3b7fa9ec6454d0ff03f5351313993.tar.xz
android_bootable_recovery-abaa9ca8f3d3b7fa9ec6454d0ff03f5351313993.tar.zst
android_bootable_recovery-abaa9ca8f3d3b7fa9ec6454d0ff03f5351313993.zip
Diffstat (limited to '')
-rw-r--r--minui/graphics.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/minui/graphics.c b/minui/graphics.c
index 4968eac7a..9ee77b3aa 100644
--- a/minui/graphics.c
+++ b/minui/graphics.c
@@ -223,7 +223,12 @@ void gr_font_size(int *x, int *y)
*y = gr_font->cheight;
}
-int gr_text(int x, int y, const char *s, int bold)
+int gr_text(int x, int y, const char *s, ...)
+{
+ return gr_text_impl(x, y, s, 0);
+}
+
+int gr_text_impl(int x, int y, const char *s, int bold)
{
GGLContext *gl = gr_context;
GRFont *font = gr_font;