mirror of https://github.com/PCSX2/pcsx2.git
pcsx2: Fix potential return of uninitialised value
This commit is contained in:
parent
908a37598c
commit
1d7cef08a7
|
@ -441,7 +441,7 @@ u128 R5900DebugInterface::getRegister(int cat, int num)
|
||||||
result = u128::From32(VU1.VI[num].UL);
|
result = u128::From32(VU1.VI[num].UL);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
result.From32(0);
|
result = u128::From32(0);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue