From f1f13c65a2f095d39e593a176ecdc81a1cc04c6d Mon Sep 17 00:00:00 2001 From: Eric House Date: Mon, 16 Dec 2013 08:05:56 -0800 Subject: [PATCH] don't overwrite gameID --- xwords4/common/game.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/xwords4/common/game.c b/xwords4/common/game.c index bc145c207..e4e004867 100644 --- a/xwords4/common/game.c +++ b/xwords4/common/game.c @@ -100,7 +100,9 @@ game_makeNewGame( MPFORMAL XWGame* game, CurGameInfo* gi, #endif assertUtilOK( util ); - gi->gameID = makeGameID( util ); + if ( 0 == gi->gameID ) { + gi->gameID = makeGameID( util ); + } game->model = model_make( MPPARM(mpool) (DictionaryCtxt*)NULL, NULL, util, gi->boardSize );