diff options
Diffstat (limited to 'examples/web/textures/textures_image_text.c')
| -rw-r--r-- | examples/web/textures/textures_image_text.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/web/textures/textures_image_text.c b/examples/web/textures/textures_image_text.c index f56cac5..fc8f661 100644 --- a/examples/web/textures/textures_image_text.c +++ b/examples/web/textures/textures_image_text.c @@ -72,11 +72,11 @@ int main(void) // De-Initialization //-------------------------------------------------------------------------------------- - UnloadTexture(texture); // Texture unloading + UnloadTexture(texture); // Texture unloading - UnloadFont(font); // Unload custom spritefont + UnloadFont(font); // Unload custom font - CloseWindow(); // Close window and OpenGL context + CloseWindow(); // Close window and OpenGL context //-------------------------------------------------------------------------------------- return 0; @@ -110,7 +110,7 @@ void UpdateDrawFrame(void) } else DrawTexture(font.texture, screenWidth/2 - font.texture.width/2, 50, BLACK); - DrawText("PRESS SPACE to SEE USED SPRITEFONT ", 290, 420, 10, DARKGRAY); + DrawText("PRESS SPACE to SHOW USED FONT ATLAS", 290, 420, 10, DARKGRAY); EndDrawing(); //---------------------------------------------------------------------------------- |
