shithub: choc

Download patch

ref: 84e1b1ac112714d920fa9a2d45728d4c7865c4e3
parent: 0a461d9449ac223b6d91a700a7efe21505ad6376
author: Simon Howard <[email protected]>
date: Mon Sep 25 19:09:32 EDT 2006

Make examples call TXT_Shutdown before quit.

Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 669

--- a/textscreen/examples/calculator.c
+++ b/textscreen/examples/calculator.c
@@ -159,6 +159,8 @@
 
     TXT_GUIMainLoop();
 
+    TXT_Shutdown();
+
     return 0;
 }
 
--- a/textscreen/examples/guitest.c
+++ b/textscreen/examples/guitest.c
@@ -172,6 +172,8 @@
 
     TXT_GUIMainLoop();
 
+    TXT_Shutdown();
+
     return 0;
 }