From 6df7d5df8af6787e3aee1f4df6639b5aa8e3884c Mon Sep 17 00:00:00 2001 From: Dav999 Date: Fri, 28 Jun 2024 14:56:54 +0200 Subject: [PATCH] Fix font::print_wrap() name in README-programmers lang/README-programmers.txt accidentally lists the name of the font::print function twice, when the second one should've been font::print_wrap instead. Oops. [skip ci] --- desktop_version/lang/README-programmers.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop_version/lang/README-programmers.txt b/desktop_version/lang/README-programmers.txt index d0388b44..71260a59 100644 --- a/desktop_version/lang/README-programmers.txt +++ b/desktop_version/lang/README-programmers.txt @@ -58,7 +58,7 @@ Of course, when you remove strings without replacement, you can simply remove th These are the text printing functions: font::print(flags, x, y, text, r, g, b) - font::print(flags, x, y, text, r, g, b, linespacing = -1, maxwidth = -1) + font::print_wrap(flags, x, y, text, r, g, b, linespacing = -1, maxwidth = -1) The flags argument can be 0, or a set of flags that do things like centering, enlarging, etc.