Skip to content

Commit c7df641

Browse files
committed
Update text_font_loading.c
1 parent 63beefd commit c7df641

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

examples/text/text_font_loading.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ int main(void)
3838

3939
// Define characters to draw
4040
// NOTE: raylib supports UTF-8 encoding, following list is actually codified as UTF8 internally
41-
const char msg[256] = "!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHI\nJKLMNOPQRSTUVWXYZ[]^_`abcdefghijklmn\nopqrstuvwxyz{|}~¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓ\nÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷\nøùúûüýþÿ";
41+
const char msg[256] = "!#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHI\nJKLMNOPQRSTUVWXYZ[]^_`abcdefghijklmn\nopqrstuvwxyz{|}~¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓ\nÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷\nøùúûüýþÿ";
4242

4343
// NOTE: Textures/Fonts MUST be loaded after Window initialization (OpenGL context is required)
4444

4545
// BMFont (AngelCode) : Font data and image atlas have been generated using external program
46-
Font fontBm = LoadFont("resources/pixantiqua.fnt");
46+
Font fontBm = LoadFont("resources/pixantiqua.fnt"); // Requires "resources/pixantiqua.png"
4747

4848
// TTF font : Font data and atlas are generated directly from TTF
4949
// NOTE: We define a font base size of 32 pixels tall and up-to 250 characters

0 commit comments

Comments
 (0)