From 48b3d91768b51de87becee8c0caec3e7035a3f95 Mon Sep 17 00:00:00 2001 From: Gregory Hainaut Date: Mon, 10 Nov 2014 12:19:30 +0100 Subject: [PATCH] partially revert previous commit ec1da2805cea40434b042c7c5994e987e599ec0f It breaks windows... --- plugins/GSdx/GSVector.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/GSdx/GSVector.h b/plugins/GSdx/GSVector.h index e5e37b02ce..a9d21c27c5 100644 --- a/plugins/GSdx/GSVector.h +++ b/plugins/GSdx/GSVector.h @@ -2970,15 +2970,15 @@ public: } - template __forceinline int extract32() const + template __forceinline int extract32() const { #if _M_SSE >= 0x401 - return _mm_extract_ps(m, idx); + return _mm_extract_ps(m, i); #else - return i32[idx]; + return i32[i]; #endif }