aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms
diff options
context:
space:
mode:
authorMichael VanOverbeek <[email protected]>2017-02-22 21:02:56 -0500
committerGitHub <[email protected]>2017-02-22 21:02:56 -0500
commita3fe772dbe714a0c2b0e23698e70c0436e08ba3b (patch)
treeec4ae1baba3ed91a44c02dc1f6eda48d9cfa1cba /ShiftOS.WinForms
parent55530087cb684bf7efd9f1ee4943c23f45b9b8dc (diff)
parent0ee6270a3d6582619cdceefaa9c89db7f1ad4722 (diff)
downloadshiftos_thereturn-a3fe772dbe714a0c2b0e23698e70c0436e08ba3b.tar.gz
shiftos_thereturn-a3fe772dbe714a0c2b0e23698e70c0436e08ba3b.tar.bz2
shiftos_thereturn-a3fe772dbe714a0c2b0e23698e70c0436e08ba3b.zip
Merge pull request #72 from craftxbox/patch-1
FIX THE DAMN ISSUE
Diffstat (limited to 'ShiftOS.WinForms')
-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 5a4cf9a..7f9a0d6 100644
--- a/ShiftOS.WinForms/Applications/Pong.cs
+++ b/ShiftOS.WinForms/Applications/Pong.cs
@@ -245,7 +245,7 @@ namespace ShiftOS.WinForms.Applications
if (this.Left < Screen.PrimaryScreen.Bounds.Width)
{
secondsleft = secondsleft - 1;
- if (secondsleft == -1)
+ if (secondsleft == 0)
{
secondsleft = 60;
level = level + 1;