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);
|
||||
break;
|
||||
default:
|
||||
result.From32(0);
|
||||
result = u128::From32(0);
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue