summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorRob Loach <[email protected]>2019-01-23 20:08:51 -0500
committerGitHub <[email protected]>2019-01-23 20:08:51 -0500
commitd897e14161fc648e986dba93b9e629aa60472dbc (patch)
treea624a0ec8711b9af940772534f2b6e0db1a94a72 /src
parentfeb6afcd61af2c42a9b5631285e8b6d4ed7f1a25 (diff)
downloadraylib-d897e14161fc648e986dba93b9e629aa60472dbc.tar.gz
raylib-d897e14161fc648e986dba93b9e629aa60472dbc.zip
Revert the screenWidth change
Diffstat (limited to 'src')
-rw-r--r--src/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.c b/src/core.c
index 5682f247..e66eabf4 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)