From bd7e7336fffaa373365d587e933809239ae4dd47 Mon Sep 17 00:00:00 2001 From: Jakob Stendahl Date: Mon, 13 Nov 2017 11:28:10 +0100 Subject: [a] Two new monsters --- Space Invaders/GameEngine/Graphics.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Space Invaders/GameEngine/Graphics.cs') diff --git a/Space Invaders/GameEngine/Graphics.cs b/Space Invaders/GameEngine/Graphics.cs index 1c15199..b27b419 100644 --- a/Space Invaders/GameEngine/Graphics.cs +++ b/Space Invaders/GameEngine/Graphics.cs @@ -33,8 +33,7 @@ namespace GameEngine { public void DrawFrame(Frame newFrame) { /* Method that draws all changes from last frame to the screen */ FrameNum++; - //Console.Clear(); - //Console.SetCursorPosition(0, 0); + for (int y = 0; y < _consoleBuffer.GetLength(0); y++) { for (int x = 0; x < _consoleBuffer.GetLength(1); x++) { -- cgit v1.2.3