Libretro: Fixed "All 0s" ram power on state option not working as expected
This commit is contained in:
parent
f91e206636
commit
5ed9b3c2a0
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue