microVU_Macro: Fix Wunused-variable warning.

This commit is contained in:
lightningterror 2022-11-19 08:06:47 +01:00
parent 32d52cb0dd
commit 93b24f98a6
1 changed files with 1 additions and 1 deletions

View File

@ -607,7 +607,7 @@ static void recQMTC2()
if (_Rt_) if (_Rt_)
{ {
// if we have to flush to memory anyway (has a constant or is x86), force load. // if we have to flush to memory anyway (has a constant or is x86), force load.
const bool vf_used = COP2INST_USEDTEST(_Rd_); [[maybe_unused]] const bool vf_used = COP2INST_USEDTEST(_Rd_);
const bool can_rename = EEINST_RENAMETEST(_Rt_); const bool can_rename = EEINST_RENAMETEST(_Rt_);
const int rtreg = (GPR_IS_DIRTY_CONST(_Rt_) || _hasX86reg(X86TYPE_GPR, _Rt_, MODE_WRITE)) ? const int rtreg = (GPR_IS_DIRTY_CONST(_Rt_) || _hasX86reg(X86TYPE_GPR, _Rt_, MODE_WRITE)) ?
_allocGPRtoXMMreg(_Rt_, MODE_READ) : _allocGPRtoXMMreg(_Rt_, MODE_READ) :