diff options
| author | Ray <[email protected]> | 2017-10-20 16:15:23 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-10-20 16:15:23 +0200 |
| commit | 18601f761935cd81b0f6298e22885c9bc6b5ee6e (patch) | |
| tree | cf6c71baa1127c796e05dd622c106742e8ace030 /examples/core | |
| parent | d9d9546ee5704201571a7875e6f5e40784490e6f (diff) | |
| parent | 1ef818b0325dafd2d7028a663b9b90d6d6529c44 (diff) | |
| download | raylib-18601f761935cd81b0f6298e22885c9bc6b5ee6e.tar.gz raylib-18601f761935cd81b0f6298e22885c9bc6b5ee6e.zip | |
Merge pull request #369 from raysan5/develop
Integrate Develop branch
Diffstat (limited to 'examples/core')
| -rw-r--r-- | examples/core/core_basic_window.c | 2 | ||||
| -rw-r--r-- | examples/core/core_vr_simulator.c | 3 |
2 files changed, 3 insertions, 2 deletions
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) * ********************************************************************************************/ 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; |
