Skip to content

Commit b908a40

Browse files
authored
Merge pull request #460 from raysan5/develop
Integrate develop branch
2 parents d50e291 + 5437458 commit b908a40

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ matrix:
1313
env: ARCH=i386
1414
sudo: required
1515
- os: linux
16-
env: ARCH=amd64 GLFW=SYSTEM
16+
env: ARCH=amd64
1717
sudo: required
1818
- os: osx
1919
env: ARCH=universal

src/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
project(raylib)
33
include("../utils.cmake")
44

5-
set(PROJECT_VERSION 1.9.2)
5+
set(PROJECT_VERSION 1.9.4)
66
set(API_VERSION 1)
77
set(RAYLIB raylib) # Name of the generated library
88

src/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
# Define required raylib variables
4545
PLATFORM ?= PLATFORM_DESKTOP
4646
RAYLIB_PATH = ..
47-
RAYLIB_VERSION = 1.9.2
47+
RAYLIB_VERSION = 1.9.4
4848
RAYLIB_API_VERSION = 1
4949
# Library type used for raylib: STATIC (.a) or SHARED (.so/.dll)
5050
RAYLIB_LIBTYPE ?= STATIC

src/core.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ static void *GamepadThread(void *arg); // Mouse reading thread
431431
// NOTE: data parameter could be used to pass any kind of required data to the initialization
432432
void InitWindow(int width, int height, void *data)
433433
{
434-
TraceLog(LOG_INFO, "Initializing raylib (v1.9.3-dev)");
434+
TraceLog(LOG_INFO, "Initializing raylib (v1.9.4-dev)");
435435

436436
#if defined(PLATFORM_DESKTOP)
437437
windowTitle = (char *)data;
@@ -501,7 +501,7 @@ void InitWindow(int width, int height, void *data)
501501
// NOTE: data parameter could be used to pass any kind of required data to the initialization
502502
void InitWindow(int width, int height, void *data)
503503
{
504-
TraceLog(LOG_INFO, "Initializing raylib (v1.9.3-dev)");
504+
TraceLog(LOG_INFO, "Initializing raylib (v1.9.4-dev)");
505505

506506
screenWidth = width;
507507
screenHeight = height;

src/raylib.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**********************************************************************************************
22
*
3-
* raylib v1.9.3-dev
3+
* raylib v1.9.4-dev
44
*
55
* A simple and easy-to-use library to learn videogames programming (www.raylib.com)
66
*

0 commit comments

Comments
 (0)