mirror of https://github.com/stella-emu/stella.git
Fixed dynamic setting of phosphor blend to not wraparound when reaching 0.
This commit is contained in:
parent
0d1481cb9d
commit
87c1d12d1d
|
@ -460,7 +460,7 @@ void Console::changePhosphor(int direction)
|
|||
}
|
||||
else if(direction == -1) // decrease blend
|
||||
{
|
||||
if(blend <= 0)
|
||||
if(blend <= 2)
|
||||
{
|
||||
myOSystem.frameBuffer().showMessage("Phosphor blend at minimum");
|
||||
return;
|
||||
|
|
Loading…
Reference in New Issue