Libretro: Fixed "All 0s" ram power on state option not working as expected

This commit is contained in:
Sour 2019-11-03 20:13:25 -05:00
parent f91e206636
commit 5ed9b3c2a0

View file

@ -364,7 +364,7 @@ extern "C" {
string value = string(var.value);
if(value == "Random Values (Default)") {
emulation.RamPowerOnState = RamState::Random;
} else if(value == "All 0s ") {
} else if(value == "All 0s") {
emulation.RamPowerOnState = RamState::AllZeros;
} else if(value == "All 1s") {
emulation.RamPowerOnState = RamState::AllOnes;