summaryrefslogtreecommitdiffhomepage
path: root/examples/text
diff options
context:
space:
mode:
Diffstat (limited to 'examples/text')
-rw-r--r--examples/text/text_bmfont_ttf.c2
-rw-r--r--examples/text/text_font_sdf.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/text/text_bmfont_ttf.c b/examples/text/text_bmfont_ttf.c
index 175d3f16..0fc82e97 100644
--- a/examples/text/text_bmfont_ttf.c
+++ b/examples/text/text_bmfont_ttf.c
@@ -53,7 +53,7 @@ int main(void)
ClearBackground(RAYWHITE);
- DrawText("Press SPACE to use TTF generated font", 20, 20, 20, LIGHTGRAY);
+ DrawText("Hold SPACE to use TTF generated font", 20, 20, 20, LIGHTGRAY);
if (!useTtf)
{
diff --git a/examples/text/text_font_sdf.c b/examples/text/text_font_sdf.c
index 91e43f75..41ce3b2a 100644
--- a/examples/text/text_font_sdf.c
+++ b/examples/text/text_font_sdf.c
@@ -111,7 +111,7 @@ int main(void)
DrawText(FormatText("RENDER SIZE: %02.02f", fontSize), GetScreenWidth() - 240, 50, 20, DARKGRAY);
DrawText("Use MOUSE WHEEL to SCALE TEXT!", GetScreenWidth() - 240, 90, 10, DARKGRAY);
- DrawText("PRESS SPACE to USE SDF FONT VERSION!", 340, GetScreenHeight() - 30, 20, MAROON);
+ DrawText("HOLD SPACE to USE SDF FONT VERSION!", 340, GetScreenHeight() - 30, 20, MAROON);
EndDrawing();
//----------------------------------------------------------------------------------