From 939bb4cf3e586643919d606620bf298f2351d735 Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Tue, 24 Oct 2006 19:23:16 +0000 Subject: Detect failures to initialise textscreen library and bomb out with an error mess age. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 727 --- textscreen/examples/calculator.c | 7 ++++++- textscreen/examples/guitest.c | 6 +++++- 2 files changed, 11 insertions(+), 2 deletions(-) (limited to 'textscreen') diff --git a/textscreen/examples/calculator.c b/textscreen/examples/calculator.c index 968d3ef4..b8fefaa3 100644 --- a/textscreen/examples/calculator.c +++ b/textscreen/examples/calculator.c @@ -144,7 +144,12 @@ void BuildGUI() int main(int argc, char *argv[]) { - TXT_Init(); + if (!TXT_Init()) + { + fprintf(stderr, "Failed to initialise GUI\n"); + exit(-1); + } + TXT_SetDesktopTitle("Calculator demo"); BuildGUI(); diff --git a/textscreen/examples/guitest.c b/textscreen/examples/guitest.c index e385ca84..94483236 100644 --- a/textscreen/examples/guitest.c +++ b/textscreen/examples/guitest.c @@ -159,7 +159,11 @@ void Window2(void) int main(int argc, char *argv[]) { - TXT_Init(); + if (!TXT_Init()) + { + fprintf(stderr, "Failed to initialise GUI\n"); + exit(-1); + } TXT_SetDesktopTitle("Not Chocolate Doom Setup"); -- cgit v1.2.3