mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Interpreter_LoadStorePaired: Silence uninitialized variable warnings
This commit is contained in:
@ -219,7 +219,9 @@ void Interpreter::Helper_Dequantize(u32 addr, u32 instI, u32 instRD, u32 instW)
|
|||||||
EQuantizeType ldType = gqr.ld_type;
|
EQuantizeType ldType = gqr.ld_type;
|
||||||
unsigned int ldScale = gqr.ld_scale;
|
unsigned int ldScale = gqr.ld_scale;
|
||||||
|
|
||||||
float ps0, ps1;
|
float ps0 = 0.0f;
|
||||||
|
float ps1 = 0.0f;
|
||||||
|
|
||||||
switch (ldType)
|
switch (ldType)
|
||||||
{
|
{
|
||||||
case QUANTIZE_FLOAT:
|
case QUANTIZE_FLOAT:
|
||||||
|
Reference in New Issue
Block a user