summaryrefslogtreecommitdiffhomepage
path: root/examples/text/text_bmfont_unordered.c
diff options
context:
space:
mode:
authorRay <[email protected]>2017-04-08 23:31:58 +0200
committerRay <[email protected]>2017-04-08 23:31:58 +0200
commit20d205cae5bf78d00fb03c266999c33488cbd2c8 (patch)
tree8aafb630d19f3a2a827bf212e16c531a0c672d41 /examples/text/text_bmfont_unordered.c
parent5fd83708cf860db358d843cb30f99a88aaf3bd2c (diff)
downloadraylib-20d205cae5bf78d00fb03c266999c33488cbd2c8.tar.gz
raylib-20d205cae5bf78d00fb03c266999c33488cbd2c8.zip
Working on examples...
Diffstat (limited to 'examples/text/text_bmfont_unordered.c')
-rw-r--r--examples/text/text_bmfont_unordered.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/text/text_bmfont_unordered.c b/examples/text/text_bmfont_unordered.c
index 6fec3256..01561bec 100644
--- a/examples/text/text_bmfont_unordered.c
+++ b/examples/text/text_bmfont_unordered.c
@@ -25,7 +25,7 @@ int main()
const char msg[256] = "ASCII extended characters:\n¡¢£¤¥¦§¨©ª«¬®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆ\nÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæ\nçèéêëìíîïðñòóôõö÷øùúûüýþÿ";
// NOTE: Loaded font has an unordered list of characters (chars in the range 32..255)
- SpriteFont font = LoadSpriteFont("resources/fonts/pixantiqua.fnt"); // BMFont (AngelCode)
+ SpriteFont font = LoadSpriteFont("resources/pixantiqua.fnt"); // BMFont (AngelCode)
SetTargetFPS(60);
//--------------------------------------------------------------------------------------