1
0
Fork 0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-11-05 10:49:41 +01:00

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]
This commit is contained in:
Dav999 2024-06-28 14:56:54 +02:00 committed by Misa Elizabeth Kai
parent 64c554261e
commit 6df7d5df8a

View file

@ -58,7 +58,7 @@ Of course, when you remove strings without replacement, you can simply remove th
These are the text printing functions: These are the text printing functions:
font::print(flags, x, y, text, r, g, b) 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. The flags argument can be 0, or a set of flags that do things like centering, enlarging, etc.