summaryrefslogtreecommitdiffhomepage
path: root/examples/textures/textures_bunnymark.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/textures/textures_bunnymark.c')
-rw-r--r--examples/textures/textures_bunnymark.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/textures/textures_bunnymark.c b/examples/textures/textures_bunnymark.c
index 86605b90..8182102c 100644
--- a/examples/textures/textures_bunnymark.c
+++ b/examples/textures/textures_bunnymark.c
@@ -98,8 +98,8 @@ int main(void)
}
DrawRectangle(0, 0, screenWidth, 40, BLACK);
- DrawText(FormatText("bunnies: %i", bunniesCount), 120, 10, 20, GREEN);
- DrawText(FormatText("batched draw calls: %i", 1 + bunniesCount/MAX_BATCH_ELEMENTS), 320, 10, 20, MAROON);
+ DrawText(TextFormat("bunnies: %i", bunniesCount), 120, 10, 20, GREEN);
+ DrawText(TextFormat("batched draw calls: %i", 1 + bunniesCount/MAX_BATCH_ELEMENTS), 320, 10, 20, MAROON);
DrawFPS(10, 10);