diff options
| author | Michael VanOverbeek <[email protected]> | 2017-02-22 21:02:56 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-02-22 21:02:56 -0500 |
| commit | a3fe772dbe714a0c2b0e23698e70c0436e08ba3b (patch) | |
| tree | ec4ae1baba3ed91a44c02dc1f6eda48d9cfa1cba | |
| parent | 55530087cb684bf7efd9f1ee4943c23f45b9b8dc (diff) | |
| parent | 0ee6270a3d6582619cdceefaa9c89db7f1ad4722 (diff) | |
| download | shiftos_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
| -rw-r--r-- | ShiftOS.WinForms/Applications/Pong.cs | 2 |
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; |
