From: matthew <matthew@owens.tech>
Date: Wed, 8 Aug 2018 19:12:30 +0000 (+0000)
Subject: removed extranious draw_borders function
X-Git-Url: https://git.owens.tech/assets/editable-focus.html/assets/editable-focus.html/git?a=commitdiff_plain;h=6d0591f360c154f855da8872b795305af9fe6225;p=csrpg.git

removed extranious draw_borders function
---

diff --git a/nogl/main.c b/nogl/main.c
index a6fb1dc..01ad530 100644
--- a/nogl/main.c
+++ b/nogl/main.c
@@ -23,25 +23,6 @@ bool init()
 	return true;
 }
 
-void draw_borders()
-{
-	char c = 'X';
-
-	for(int i = 0; i < 80; ++i){
-		mvaddch(0, i, c);
-		mvaddch(22, i, c);
-		mvaddch(24, i, c);
-	}
-
-	for(int i = 0; i < 25; ++i){
-		mvaddch(i, 0, c);
-		mvaddch(i, 79, c);
-	}
-
-	// updating the screen
-	refresh();
-}
-
 int main()
 {
 	int layer = 0;