mirror of
https://github.com/raysan5/raylib.git
synced 2026-01-26 16:59:18 -05:00
@ -13,7 +13,7 @@ matrix:
|
|||||||
env: ARCH=i386
|
env: ARCH=i386
|
||||||
sudo: required
|
sudo: required
|
||||||
- os: linux
|
- os: linux
|
||||||
env: ARCH=amd64 GLFW=SYSTEM
|
env: ARCH=amd64
|
||||||
sudo: required
|
sudo: required
|
||||||
- os: osx
|
- os: osx
|
||||||
env: ARCH=universal
|
env: ARCH=universal
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
project(raylib)
|
project(raylib)
|
||||||
include("../utils.cmake")
|
include("../utils.cmake")
|
||||||
|
|
||||||
set(PROJECT_VERSION 1.9.2)
|
set(PROJECT_VERSION 1.9.4)
|
||||||
set(API_VERSION 1)
|
set(API_VERSION 1)
|
||||||
set(RAYLIB raylib) # Name of the generated library
|
set(RAYLIB raylib) # Name of the generated library
|
||||||
|
|
||||||
|
|||||||
@ -44,7 +44,7 @@
|
|||||||
# Define required raylib variables
|
# Define required raylib variables
|
||||||
PLATFORM ?= PLATFORM_DESKTOP
|
PLATFORM ?= PLATFORM_DESKTOP
|
||||||
RAYLIB_PATH = ..
|
RAYLIB_PATH = ..
|
||||||
RAYLIB_VERSION = 1.9.2
|
RAYLIB_VERSION = 1.9.4
|
||||||
RAYLIB_API_VERSION = 1
|
RAYLIB_API_VERSION = 1
|
||||||
# Library type used for raylib: STATIC (.a) or SHARED (.so/.dll)
|
# Library type used for raylib: STATIC (.a) or SHARED (.so/.dll)
|
||||||
RAYLIB_LIBTYPE ?= STATIC
|
RAYLIB_LIBTYPE ?= STATIC
|
||||||
|
|||||||
@ -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
|
// NOTE: data parameter could be used to pass any kind of required data to the initialization
|
||||||
void InitWindow(int width, int height, void *data)
|
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)
|
#if defined(PLATFORM_DESKTOP)
|
||||||
windowTitle = (char *)data;
|
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
|
// NOTE: data parameter could be used to pass any kind of required data to the initialization
|
||||||
void InitWindow(int width, int height, void *data)
|
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;
|
screenWidth = width;
|
||||||
screenHeight = height;
|
screenHeight = height;
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************************************
|
/**********************************************************************************************
|
||||||
*
|
*
|
||||||
* raylib v1.9.3-dev
|
* raylib v1.9.4-dev
|
||||||
*
|
*
|
||||||
* A simple and easy-to-use library to learn videogames programming (www.raylib.com)
|
* A simple and easy-to-use library to learn videogames programming (www.raylib.com)
|
||||||
*
|
*
|
||||||
|
|||||||
Reference in New Issue
Block a user