From 52b9cd9c8051a8d95587e3ccc3ee3220609bcc56 Mon Sep 17 00:00:00 2001 From: lempamo Date: Tue, 28 Feb 2017 11:58:24 -0500 Subject: more snakey stuff someone fix the snakey bug plz --- ShiftOS.WinForms/Applications/Snakey.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ShiftOS.WinForms/Applications/Snakey.cs') diff --git a/ShiftOS.WinForms/Applications/Snakey.cs b/ShiftOS.WinForms/Applications/Snakey.cs index c3bd5cf..c6f61e9 100644 --- a/ShiftOS.WinForms/Applications/Snakey.cs +++ b/ShiftOS.WinForms/Applications/Snakey.cs @@ -17,7 +17,7 @@ namespace ShiftOS.WinForms.Applications [DefaultIcon("iconSnakey")] public partial class Snakey : UserControl, IShiftOSWindow { - private int[,] snakemap; // 0 - Nothing, 1 - Body, 2 - Head, 3 - Tail + private int[,] snakemap = null; // 0 - Nothing, 1 - Body, 2 - Head, 3 - Tail private int snakedirection = 0; // 0 - Left, 1 - Down, 2 - Right, 3 - Up private Timer snakeupdater = new Timer(); private bool extending = false; -- cgit v1.2.3