From efdc6f87d53d319816b3fc76a00f309f110f3955 Mon Sep 17 00:00:00 2001 From: Ray Date: Wed, 29 May 2019 13:47:57 +0200 Subject: Define standard examples size --- examples/core/core_vr_simulator.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'examples') diff --git a/examples/core/core_vr_simulator.c b/examples/core/core_vr_simulator.c index 628d7cf4..76e22b1a 100644 --- a/examples/core/core_vr_simulator.c +++ b/examples/core/core_vr_simulator.c @@ -21,11 +21,12 @@ int main(void) { // Initialization //-------------------------------------------------------------------------------------- - const int screenWidth = 1080; - const int screenHeight = 600; + const int screenWidth = 800; + const int screenHeight = 450; // NOTE: screenWidth/screenHeight should match VR device aspect ratio + SetConfigFlags(FLAG_MSAA_4X_HINT); InitWindow(screenWidth, screenHeight, "raylib [core] example - vr simulator"); // Init VR simulator (Oculus Rift CV1 parameters) -- cgit v1.2.3