diff options
| author | Ray <[email protected]> | 2018-02-04 13:47:42 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2018-02-04 13:47:42 +0100 |
| commit | b908a4078a2f318e6bc9cbdcb7045d1ccab0c6a4 (patch) | |
| tree | d853750091f0c5aa462a35621eecfddea5044c73 /src/core.c | |
| parent | d50e291e8639de5cfb222bffc431f0f76151d48a (diff) | |
| parent | 543745846974aa2f2fc3140238299aa3b78a30b6 (diff) | |
| download | raylib-1.9.4-dev.tar.gz raylib-1.9.4-dev.zip | |
Merge pull request #460 from raysan5/develop1.9.4-dev
Integrate develop branch
Diffstat (limited to 'src/core.c')
| -rw-r--r-- | src/core.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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.3-dev)"); + TraceLog(LOG_INFO, "Initializing raylib (v1.9.4-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.3-dev)"); + TraceLog(LOG_INFO, "Initializing raylib (v1.9.4-dev)"); screenWidth = width; screenHeight = height; |
