aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/Applications
diff options
context:
space:
mode:
authorMichael VanOverbeek <[email protected]>2017-05-07 10:42:46 -0400
committerGitHub <[email protected]>2017-05-07 10:42:46 -0400
commit92a83f44c84c8dfee0651434e91c1ba5639d432b (patch)
tree06dbbcc91e9f3bc83e688909e97c90d3ade05802 /ShiftOS.WinForms/Applications
parent57c8eb390411d28f3a6c80ce6abf5f3aa06e4d29 (diff)
parentc56b59a8a37c108a18aadc719091b5a6827931e3 (diff)
downloadshiftos_thereturn-92a83f44c84c8dfee0651434e91c1ba5639d432b.tar.gz
shiftos_thereturn-92a83f44c84c8dfee0651434e91c1ba5639d432b.tar.bz2
shiftos_thereturn-92a83f44c84c8dfee0651434e91c1ba5639d432b.zip
Merge pull request #122 from aren-cllc/patch-1
Stop pong from ending early.
Diffstat (limited to 'ShiftOS.WinForms/Applications')
-rw-r--r--ShiftOS.WinForms/Applications/Pong.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ShiftOS.WinForms/Applications/Pong.cs b/ShiftOS.WinForms/Applications/Pong.cs
index 433e05f..02d9963 100644
--- a/ShiftOS.WinForms/Applications/Pong.cs
+++ b/ShiftOS.WinForms/Applications/Pong.cs
@@ -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();
}