summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRay <[email protected]>2021-12-16 00:19:09 +0100
committerRay <[email protected]>2021-12-16 00:19:09 +0100
commit1653fc5bb5f07e5f7f63b43fa76cfe60f0686aee (patch)
tree7e844650f6a1f1fbf202bf655862585bb897139a
parent0454acaacfaae4a3269d443d3d88045240f738c3 (diff)
downloadraylib-1653fc5bb5f07e5f7f63b43fa76cfe60f0686aee.tar.gz
raylib-1653fc5bb5f07e5f7f63b43fa76cfe60f0686aee.zip
Update rcore.c
-rw-r--r--src/rcore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rcore.c b/src/rcore.c
index d2452987..0a89df0b 100644
--- a/src/rcore.c
+++ b/src/rcore.c
@@ -3317,7 +3317,7 @@ void OpenURL(const char *url)
sprintf(cmd, "open '%s'", url);
#endif
int result = system(cmd);
- if (result == -1) TRACELOG(LOG_WARNING, "OpenURL() child process could bot be created");
+ if (result == -1) TRACELOG(LOG_WARNING, "OpenURL() child process could not be created");
RL_FREE(cmd);
#endif
#if defined(PLATFORM_WEB)