diff options
| author | raysan5 <[email protected]> | 2021-06-28 12:24:39 +0200 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2021-06-28 12:24:39 +0200 |
| commit | 957fe60d0be9b4eec4998e038734df47adc40b14 (patch) | |
| tree | 4c9606da6b855fb597a6ab20d43ff3de88351efd /examples/web/textures/textures_image_text.c | |
| parent | 7e57cdf8ad704dac6bdce051bdb9e718d83ea703 (diff) | |
| download | raylib.com-957fe60d0be9b4eec4998e038734df47adc40b14.tar.gz raylib.com-957fe60d0be9b4eec4998e038734df47adc40b14.zip | |
Reviewed comments
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(); //---------------------------------------------------------------------------------- |
