From 6250ec1f370e53f63fe86bf80343e4a0b92ac6ac Mon Sep 17 00:00:00 2001 From: "gregory.hainaut" Date: Thu, 15 Jul 2010 18:07:49 +0000 Subject: [PATCH] [IPU]: properly fix gcc c++0x error. Declared coeff as s16 instead of u16. git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3498 96395faa-99c1-11dd-bbfe-3dabce05a288 --- pcsx2/IPU/yuv2rgb.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pcsx2/IPU/yuv2rgb.cpp b/pcsx2/IPU/yuv2rgb.cpp index 423cacc71c..5fcda2ef18 100644 --- a/pcsx2/IPU/yuv2rgb.cpp +++ b/pcsx2/IPU/yuv2rgb.cpp @@ -63,11 +63,11 @@ struct SSE2_Tables u16 Y_mask[8]; // offset -32 u16 round_1bit[8]; // offset -16 - u16 Y_coefficients[8]; // offset 0 - u16 GCr_coefficients[8];// offset 16 - u16 GCb_coefficients[8];// offset 32 - u16 RCr_coefficients[8];// offset 48 - u16 BCb_coefficients[8];// offset 64 + s16 Y_coefficients[8]; // offset 0 + s16 GCr_coefficients[8];// offset 16 + s16 GCb_coefficients[8];// offset 32 + s16 RCr_coefficients[8];// offset 48 + s16 BCb_coefficients[8];// offset 64 }; enum