summaryrefslogtreecommitdiff
path: root/include/text.h
diff options
context:
space:
mode:
authorDiegoisawesome <diego@domoreaweso.me>2017-10-12 14:36:26 -0500
committerDiegoisawesome <diego@domoreaweso.me>2017-10-12 14:39:18 -0500
commitf300f853c8675817d00bbbc0caf57e5f80d6b573 (patch)
treefad0807880ff2a4833662137f402661021162e34 /include/text.h
parentf1b6358047dff266db01545d4a5927047e6756df (diff)
Add const qualifiers to scrcmd
Diffstat (limited to 'include/text.h')
-rw-r--r--include/text.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/text.h b/include/text.h
index c3b27f7f1..594661717 100644
--- a/include/text.h
+++ b/include/text.h
@@ -196,7 +196,7 @@ u8 gGlyphDimensions[0x2];
void SetFontsPointer(const struct FontInfo *fonts);
void DeactivateAllTextPrinters(void);
-u16 PrintTextOnWindow(u8 windowId, u8 fontId, u8 *str, u8 x, u8 y, u8 speed, void (*callback)(struct TextSubPrinter *, u16));
+u16 PrintTextOnWindow(u8 windowId, u8 fontId, const u8 *str, u8 x, u8 y, u8 speed, void (*callback)(struct TextSubPrinter *, u16));
bool16 AddTextPrinter(struct TextSubPrinter *textSubPrinter, u8 speed, void (*callback)(struct TextSubPrinter *, u16));
void RunTextPrinters(void);
bool16 IsTextPrinterActive(u8 id);