From 1375a616b25c3ffad1cc73581b8acbdc30ef79b4 Mon Sep 17 00:00:00 2001 From: Ray Date: Fri, 20 Oct 2017 00:18:21 +0200 Subject: Some examples code tweaks --- examples/core/core_basic_window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/core') diff --git a/examples/core/core_basic_window.c b/examples/core/core_basic_window.c index fb83400a..b30f05de 100644 --- a/examples/core/core_basic_window.c +++ b/examples/core/core_basic_window.c @@ -15,7 +15,7 @@ * This example has been created using raylib 1.0 (www.raylib.com) * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) * -* Copyright (c) 2014 Ramon Santamaria (@raysan5) +* Copyright (c) 2013-2016 Ramon Santamaria (@raysan5) * ********************************************************************************************/ -- cgit v1.2.3 From 1ef818b0325dafd2d7028a663b9b90d6d6529c44 Mon Sep 17 00:00:00 2001 From: Ray Date: Fri, 20 Oct 2017 13:59:08 +0200 Subject: Update example --- examples/core/core_vr_simulator.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'examples/core') diff --git a/examples/core/core_vr_simulator.c b/examples/core/core_vr_simulator.c index 69e0f849..d919c410 100644 --- a/examples/core/core_vr_simulator.c +++ b/examples/core/core_vr_simulator.c @@ -22,7 +22,8 @@ int main() InitWindow(screenWidth, screenHeight, "raylib [core] example - vr simulator"); - InitVrSimulator(HMD_OCULUS_RIFT_CV1); // Init VR simulator (Oculus Rift CV1 parameters) + // Init VR simulator (Oculus Rift CV1 parameters) + InitVrSimulator(GetVrDeviceInfo(HMD_OCULUS_RIFT_CV1)); // Define the camera to look into our 3d world Camera camera; -- cgit v1.2.3