From 2d54d59add72e7c229e5c6707dbcbabf4eac3adb Mon Sep 17 00:00:00 2001 From: Gregory Hainaut Date: Wed, 20 May 2015 08:40:08 +0200 Subject: [PATCH] gsdx-ogl: update assertion ps sel is 8B now --- 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 6c33e09ed8..f53c92dfd0 100644 --- a/plugins/GSdx/GSDeviceOGL.cpp +++ b/plugins/GSdx/GSDeviceOGL.cpp @@ -354,7 +354,7 @@ bool GSDeviceOGL::Create(GSWnd* wnd) // Basic to ensure structures are correctly packed ASSERT(sizeof(VSSelector) == 4); - ASSERT(sizeof(PSSelector) == 4); + ASSERT(sizeof(PSSelector) == 8); ASSERT(sizeof(PSSamplerSelector) == 4); ASSERT(sizeof(OMDepthStencilSelector) == 4); ASSERT(sizeof(OMColorMaskSelector) == 4);