diff options
| author | Ray <[email protected]> | 2017-12-05 00:05:05 +0100 |
|---|---|---|
| committer | Ray <[email protected]> | 2017-12-05 00:05:05 +0100 |
| commit | 54d0acc3b6200e044771c28fb01ef97dde5b90a0 (patch) | |
| tree | 02b1ea218c45cc160ebd1fc9e06651f51aa9c8ba /src/core.c | |
| parent | 0cd327ccb253ef13a50ecf879f7bd9ebb8a7097f (diff) | |
| download | raylib-54d0acc3b6200e044771c28fb01ef97dde5b90a0.tar.gz raylib-54d0acc3b6200e044771c28fb01ef97dde5b90a0.zip | |
Change version number for develop
Updated raylib version to 1.9-dev for development pourposes.
Next raylib version is planned to implement a big amount of changes, so
the version bump.
Diffstat (limited to 'src/core.c')
| -rw-r--r-- | src/core.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -414,7 +414,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.8.0)"); + TraceLog(LOG_INFO, "Initializing raylib (v1.9-dev)"); // Input data is window title char data windowTitle = (char *)data; @@ -478,7 +478,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.8.0)"); + TraceLog(LOG_INFO, "Initializing raylib (v1.9-dev)"); screenWidth = width; screenHeight = height; |
