From 0b9f77d4c00383b2f8c65bca7a0c0f5fa278f191 Mon Sep 17 00:00:00 2001 From: ehouse Date: Sun, 18 Mar 2007 23:55:58 +0000 Subject: [PATCH] Don't call comms_start while opening game. Caller may still consider another game open. --- common/game.c | 1 - 1 file changed, 1 deletion(-) diff --git a/common/game.c b/common/game.c index e9ac8bc22..e30a9139c 100644 --- a/common/game.c +++ b/common/game.c @@ -182,7 +182,6 @@ game_makeFromStream( MPFORMAL XWStreamCtxt* stream, XWGame* game, if ( hasComms ) { game->comms = comms_makeFromStream( MPPARM(mpool) stream, util, sendProc, closure ); - comms_start( game->comms ); } else { game->comms = NULL; }