summaryrefslogtreecommitdiffhomepage
path: root/examples/web/core/core_random_values.c
diff options
context:
space:
mode:
authorRay <[email protected]>2021-03-12 18:05:09 +0100
committerRay <[email protected]>2021-03-12 18:05:09 +0100
commit421c4e4cd85310bef3a8f79f89d23e3a1eac9668 (patch)
treea49167a3f2c2ae7558c9a3a94696bc187ffbc824 /examples/web/core/core_random_values.c
parentcc62fcccc630fdc4badcad8381d5bb43eb71fa1f (diff)
downloadraylib.com-421c4e4cd85310bef3a8f79f89d23e3a1eac9668.tar.gz
raylib.com-421c4e4cd85310bef3a8f79f89d23e3a1eac9668.zip
Renamed FormatText() -> TextFormat()
Diffstat (limited to 'examples/web/core/core_random_values.c')
-rw-r--r--examples/web/core/core_random_values.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/web/core/core_random_values.c b/examples/web/core/core_random_values.c
index 9d7e70b..b997540 100644
--- a/examples/web/core/core_random_values.c
+++ b/examples/web/core/core_random_values.c
@@ -86,7 +86,7 @@ void UpdateDrawFrame(void)
DrawText("Every 2 seconds a new random value is generated:", 130, 100, 20, MAROON);
- DrawText(FormatText("%i", randValue), 360, 180, 80, LIGHTGRAY);
+ DrawText(TextFormat("%i", randValue), 360, 180, 80, LIGHTGRAY);
EndDrawing();
//----------------------------------------------------------------------------------