From 26cf8fad7071e40a77331b3986ad0ac3003b8139 Mon Sep 17 00:00:00 2001 From: punkrockguy318 Date: Sun, 10 Dec 2006 14:02:36 +0000 Subject: [PATCH] Fixed join/host bug --- ChangeLog | 2 ++ gfceu | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 4742bf40..30e4b32f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,5 @@ +========================== version 0.5.3 ======================== +* Fixed join/host problem. ========================== version 0.5.2 ======================== Cleanup: * Fixed silly hack when forcing GTK event processing. diff --git a/gfceu b/gfceu index 75550466..44254791 100644 --- a/gfceu +++ b/gfceu @@ -244,7 +244,7 @@ def launch(passed, local=False): else: netpass = '-netpassword ' + '"' + options.join_pass + '" ' network = '-connect "' + options.join_add + '"'\ - ' -netport '+ options.join_port + ' ' + netpass + ' -netport '+ str(options.join_port) + ' ' + netpass else: network = '' @@ -254,7 +254,7 @@ def launch(passed, local=False): else: netpass = ' -netpassword ' + '"' + options.host_pass + '" ' network = '-connect localhost -netport '+\ - options.host_port + netpass + ' ' + str(options.host_port) + netpass + ' ' if local: @@ -279,7 +279,7 @@ def launch(passed, local=False): else: args = [xterm_binary, "-e", fceu_server_binary] args.append('--port') - args.append(options.host_port) + args.append(str(options.host_port)) if options.host_pass: args.append("--password") args.append(options.host_pass)