Fixed dynamic setting of phosphor blend to not wraparound when reaching 0.

This commit is contained in:
Stephen Anthony 2017-07-12 16:16:41 -02:30
parent 0d1481cb9d
commit 87c1d12d1d
1 changed files with 1 additions and 1 deletions

View File

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