aboutsummaryrefslogtreecommitdiff
path: root/src/core.c
diff options
context:
space:
mode:
authorraysan5 <raysan5@gmail.com>2018-02-04 12:33:46 +0100
committerraysan5 <raysan5@gmail.com>2018-02-04 12:33:46 +0100
commit6dc2f979ccbb4ec6f8166805b5f4f6377efbce70 (patch)
tree9637c6d00738ecc75195bd754bc9bc6daad642d2 /src/core.c
parentc32ed921a2d6ee0c5c1857f7e613ab17942b43d8 (diff)
downloadraylib-6dc2f979ccbb4ec6f8166805b5f4f6377efbce70.tar.gz
raylib-6dc2f979ccbb4ec6f8166805b5f4f6377efbce70.zip
Updated raylib version
Note that this version is under development and could be buggy on some platforms...
Diffstat (limited to 'src/core.c')
-rw-r--r--src/core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core.c b/src/core.c
index 821a2d61..1cafac28 100644
--- a/src/core.c
+++ b/src/core.c
@@ -431,7 +431,7 @@ static void *GamepadThread(void *arg); // Mouse reading thread
// NOTE: data parameter could be used to pass any kind of required data to the initialization
void InitWindow(int width, int height, void *data)
{
- TraceLog(LOG_INFO, "Initializing raylib (v1.9-dev)");
+ TraceLog(LOG_INFO, "Initializing raylib (v1.9.3-dev)");
#if defined(PLATFORM_DESKTOP)
windowTitle = (char *)data;
@@ -501,7 +501,7 @@ void InitWindow(int width, int height, void *data)
// NOTE: data parameter could be used to pass any kind of required data to the initialization
void InitWindow(int width, int height, void *data)
{
- TraceLog(LOG_INFO, "Initializing raylib (v1.9-dev)");
+ TraceLog(LOG_INFO, "Initializing raylib (v1.9.3-dev)");
screenWidth = width;
screenHeight = height;