From d897e14161fc648e986dba93b9e629aa60472dbc Mon Sep 17 00:00:00 2001 From: Rob Loach Date: Wed, 23 Jan 2019 20:08:51 -0500 Subject: [PATCH] Revert the screenWidth change --- src/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core.c b/src/core.c index 5682f2470..e66eabf4e 100644 --- a/src/core.c +++ b/src/core.c @@ -276,7 +276,7 @@ static bool windowMinimized = false; // Check if window has been mini static const char *windowTitle = NULL; // Window text title... static unsigned int displayWidth, displayHeight;// Display width and height (monitor, device-screen, LCD, ...) -//static int screenWidth, screenHeight; // Screen width and height (used render area) +static int screenWidth, screenHeight; // Screen width and height (used render area) static int renderWidth, renderHeight; // Framebuffer width and height (render area, including black bars if required) static int renderOffsetX = 0; // Offset X from render area (must be divided by 2) static int renderOffsetY = 0; // Offset Y from render area (must be divided by 2)