gsdx-ogl: remove an useless variable

This commit is contained in:
Gregory Hainaut 2015-08-15 13:05:56 +02:00
parent 2e9ff045e1
commit 87f497af0a
2 changed files with 0 additions and 3 deletions

View File

@ -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);

View File

@ -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;