Merge pull request #122 from aren-cllc/patch-1

Stop pong from ending early.
This commit is contained in:
Michael VanOverbeek 2017-05-07 10:42:46 -04:00 committed by GitHub
commit 92a83f44c8

View file

@ -629,7 +629,7 @@ namespace ShiftOS.WinForms.Applications
if (this.Left < Screen.PrimaryScreen.Bounds.Width)
{
secondsleft = secondsleft - 1;
if (secondsleft == 1)
if (secondsleft == 0)
{
CompleteLevel();
}