pcsx2: Fix potential return of uninitialised value

This commit is contained in:
Jonathan Li 2018-03-18 19:45:37 +00:00
parent 908a37598c
commit 1d7cef08a7
1 changed files with 1 additions and 1 deletions

View File

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