From 6dc2f979ccbb4ec6f8166805b5f4f6377efbce70 Mon Sep 17 00:00:00 2001 From: raysan5 Date: Sun, 4 Feb 2018 12:33:46 +0100 Subject: [PATCH] Updated raylib version Note that this version is under development and could be buggy on some platforms... --- src/core.c | 4 ++-- src/raylib.h | 2 +- 2 files changed, 3 insertions(+), 3 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; diff --git a/src/raylib.h b/src/raylib.h index 61a14a8c..a34ef9d6 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -1,6 +1,6 @@ /********************************************************************************************** * -* raylib v1.9-dev +* raylib v1.9.3-dev * * A simple and easy-to-use library to learn videogames programming (www.raylib.com) *