From a2d305b9abc4bc36714de0de97f54c2abc597bdb Mon Sep 17 00:00:00 2001 From: arcum42 Date: Sun, 19 Apr 2009 20:34:32 +0000 Subject: [PATCH] The things Visual C++ lets you get away with... git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1022 96395faa-99c1-11dd-bbfe-3dabce05a288 --- pcsx2/x86/ix86/implement/xmm/movqss.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pcsx2/x86/ix86/implement/xmm/movqss.h b/pcsx2/x86/ix86/implement/xmm/movqss.h index f90500e674..4f0fdd1614 100644 --- a/pcsx2/x86/ix86/implement/xmm/movqss.h +++ b/pcsx2/x86/ix86/implement/xmm/movqss.h @@ -134,7 +134,7 @@ public: writeXMMop( 0x66, Opcode, to, from ); } template< typename T > - __noinline void operator()( const iRegisterSIMD&, const ModSibBase& from ) const { writeXMMop( 0x66, Opcode, to, from ); } + __noinline void operator()( const iRegisterSIMD& to, const ModSibBase& from ) const { writeXMMop( 0x66, Opcode, to, from ); } PLogicImplAll() {} //GCWho? }; @@ -153,7 +153,7 @@ public: { writeXMMop( Prefix, Opcode, to, from ); } - __noinline void operator()( const iRegisterSSE&, const ModSibBase& from ) const { writeXMMop( Prefix, Opcode, to, from ); } + __noinline void operator()( const iRegisterSSE& to, const ModSibBase& from ) const { writeXMMop( Prefix, Opcode, to, from ); } PLogicImplSSE() {} //GCWho? };