From dd2e9d1fc72aaada894988cb5b7dfb7c14f0c2e2 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Sun, 10 Aug 2014 23:57:43 -0400 Subject: [PATCH] X11_Util: Fix build when using EGL We forgot to remove the reference to GLWin.width / GLWin.height here. --- Source/Core/DolphinWX/GLInterface/X11_Util.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/Source/Core/DolphinWX/GLInterface/X11_Util.cpp b/Source/Core/DolphinWX/GLInterface/X11_Util.cpp index a1060e8b87..32ab4699e2 100644 --- a/Source/Core/DolphinWX/GLInterface/X11_Util.cpp +++ b/Source/Core/DolphinWX/GLInterface/X11_Util.cpp @@ -83,8 +83,6 @@ void *cXInterface::CreateWindow(void) XSync(GLWin.evdpy, True); GLWin.xEventThread = std::thread(&cXInterface::XEventThread, this); - // Control window size and picture scaling - GLInterface->SetBackBufferDimensions(GLWin.width, GLWin.height); return (void *) GLWin.win; }