aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/Applications
diff options
context:
space:
mode:
Diffstat (limited to 'ShiftOS.WinForms/Applications')
-rw-r--r--ShiftOS.WinForms/Applications/ShiftSweeper.cs1
-rw-r--r--ShiftOS.WinForms/Applications/Snakey.cs1
2 files changed, 1 insertions, 1 deletions
diff --git a/ShiftOS.WinForms/Applications/ShiftSweeper.cs b/ShiftOS.WinForms/Applications/ShiftSweeper.cs
index 0b05bdf..aaeed3f 100644
--- a/ShiftOS.WinForms/Applications/ShiftSweeper.cs
+++ b/ShiftOS.WinForms/Applications/ShiftSweeper.cs
@@ -134,7 +134,6 @@ namespace ShiftOS.WinForms.Applications
buttonE.Enabled = false;
buttonM.Enabled = false;
buttonH.Enabled = false;
- gameplayed = true;
makegrid();
}
diff --git a/ShiftOS.WinForms/Applications/Snakey.cs b/ShiftOS.WinForms/Applications/Snakey.cs
index c6f61e9..f210c9c 100644
--- a/ShiftOS.WinForms/Applications/Snakey.cs
+++ b/ShiftOS.WinForms/Applications/Snakey.cs
@@ -155,6 +155,7 @@ namespace ShiftOS.WinForms.Applications
clearGame();
makeGrid();
}
+ snakemap = new int[10, 10];
snakemap[5, 5] = 2;
tableLayoutPanel1.GetControlFromPosition(5, 5).BackgroundImage = Properties.Resources.SnakeyHeadL;
for (int x = 6; x < 8; x++)