diff options
Diffstat (limited to 'Space Invaders/GameEngine/Graphics.cs')
-rw-r--r-- | Space Invaders/GameEngine/Graphics.cs | 3 |
1 files changed, 1 insertions, 2 deletions
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++) { |