From 5a0367f39887ec03e3155f1abbdce37ddbf382f9 Mon Sep 17 00:00:00 2001 From: "gregory.hainaut" Date: Mon, 20 May 2013 16:29:56 +0000 Subject: [PATCH] gsdx-ogl-wnd: fix compilation on MSVC201x git-svn-id: http://pcsx2.googlecode.com/svn/branches/gsdx-ogl-wnd@5638 96395faa-99c1-11dd-bbfe-3dabce05a288 --- plugins/GSdx/GSDeviceOGL.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/GSdx/GSDeviceOGL.cpp b/plugins/GSdx/GSDeviceOGL.cpp index e798e91e55..b48801e681 100644 --- a/plugins/GSdx/GSDeviceOGL.cpp +++ b/plugins/GSdx/GSDeviceOGL.cpp @@ -97,7 +97,7 @@ GSDeviceOGL::~GSDeviceOGL() gl_DeleteProgram(m_convert.ps[i]); } else { gl_DeleteShader(m_convert.vs); - for (uint i = 0; i < 2; i++) + for (uint32 i = 0; i < 2; i++) gl_DeleteShader(m_convert.ps[i]); } gl_DeleteSamplers(1, &m_convert.ln);