From 87f497af0aeb05e64d434a427f27f28dfb34de9e Mon Sep 17 00:00:00 2001 From: Gregory Hainaut Date: Sat, 15 Aug 2015 13:05:56 +0200 Subject: [PATCH] gsdx-ogl: remove an useless variable --- plugins/GSdx/GSRendererOGL.cpp | 2 -- plugins/GSdx/GSRendererOGL.h | 1 - 2 files changed, 3 deletions(-) diff --git a/plugins/GSdx/GSRendererOGL.cpp b/plugins/GSdx/GSRendererOGL.cpp index 70f809907d..c3b9e098a0 100644 --- a/plugins/GSdx/GSRendererOGL.cpp +++ b/plugins/GSdx/GSRendererOGL.cpp @@ -27,8 +27,6 @@ GSRendererOGL::GSRendererOGL() : GSRendererHW(new GSTextureCacheOGL(this)) { - m_pixelcenter = GSVector2(-0.5f, -0.5f); - m_accurate_date = theApp.GetConfig("accurate_date", 0); m_sw_blending = theApp.GetConfig("accurate_blending_unit", 1); diff --git a/plugins/GSdx/GSRendererOGL.h b/plugins/GSdx/GSRendererOGL.h index 8024b210da..846e8a21db 100644 --- a/plugins/GSdx/GSRendererOGL.h +++ b/plugins/GSdx/GSRendererOGL.h @@ -45,7 +45,6 @@ class GSRendererOGL : public GSRendererHW }; private: - GSVector2 m_pixelcenter; bool m_accurate_date; int m_sw_blending; PRIM_OVERLAP m_prim_overlap;