From 9befb65786e39888dc7de97a1d247852f1cb5d74 Mon Sep 17 00:00:00 2001 From: punkrockguy318 Date: Sun, 14 Sep 2008 22:31:53 +0000 Subject: [PATCH] Made error message of missing fceux binary more elegant --- gfceux | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gfceux b/gfceux index abbcc437..aeba1dfe 100755 --- a/gfceux +++ b/gfceux @@ -238,7 +238,7 @@ class GfceuApp: def print_error(self, message, code, use_gtk=True, fatal=True): """ - GfceuApp.error() + GfceuApp.print_error() Presents the user with an error message and optionally quits the program. """ @@ -597,11 +597,11 @@ class GfceuApp: if self.server_binary == None: if os.name == 'nt': - gfceu_error("The fceu server software cannot be found. \n\ + self.print_error("The fceu server software cannot be found. \n\ Ensure that it is installed in the same directory as \n\ GFCE Ultra.", 102, True, False) else: - gfceu_error("The fceu server software cannot be found on \n\ + self.print_error("The fceu server software cannot be found on \n\ this system. Ensure that it is installed and in your path.", 101, True, False) widgets.get_object("no_network_radio").set_active(True)