Fixed a memory leak where the screen would not be freed when used with the debugger
diff --git a/gui.c b/gui.c
index f12ba77..ed34655 100644
--- a/gui.c
+++ b/gui.c
@@ -100,7 +100,8 @@
 		nk_input_begin(ctx);
 		while (SDL_PollEvent(&evt))
 		{
-			if (evt.type == SDL_QUIT) goto cleanup;
+			if (evt.type == SDL_QUIT)
+				goto cleanup;
 			nk_sdl_handle_event(&evt);
 		}
 		nk_input_end(ctx);
@@ -235,6 +236,8 @@
 	SDL_Quit();
 
 	cmd(mq, "quit");
+
+	printf("Cleaned up GUI\n");
 }