summaryrefslogtreecommitdiffhomepage
path: root/examples/core
diff options
context:
space:
mode:
authorRay <[email protected]>2021-03-12 18:00:36 +0100
committerRay <[email protected]>2021-03-12 18:00:36 +0100
commitfe3256be9fd20e4bc743934785f5a8a5d57a8832 (patch)
tree29629c7f06dbdcf40f69139b81f454d8736e0096 /examples/core
parent08723659386e463219d60447ef83ebdc5cf3f2f9 (diff)
downloadraylib-fe3256be9fd20e4bc743934785f5a8a5d57a8832.tar.gz
raylib-fe3256be9fd20e4bc743934785f5a8a5d57a8832.zip
Renamed some functions to use latest raylib version
Diffstat (limited to 'examples/core')
-rw-r--r--examples/core/core_window_flags.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/core/core_window_flags.c b/examples/core/core_window_flags.c
index 191b5c8a..1ecd451c 100644
--- a/examples/core/core_window_flags.c
+++ b/examples/core/core_window_flags.c
@@ -145,7 +145,7 @@ int main(void)
DrawFPS(10, 10);
- DrawText(FormatText("Screen Size: [%i, %i]", GetScreenWidth(), GetScreenHeight()), 10, 40, 10, GREEN);
+ DrawText(TextFormat("Screen Size: [%i, %i]", GetScreenWidth(), GetScreenHeight()), 10, 40, 10, GREEN);
// Draw window state info
DrawText("Following flags can be set after window creation:", 10, 60, 10, GRAY);