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? };