From bc0478abbfc0164f6e7d0c4feced836c9609715a Mon Sep 17 00:00:00 2001 From: Eric House Date: Sun, 21 May 2023 08:40:59 -0700 Subject: [PATCH] include player-specific dicts in gi_copy --- xwords4/common/game.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xwords4/common/game.c b/xwords4/common/game.c index ffa99efda..4f573eb46 100644 --- a/xwords4/common/game.c +++ b/xwords4/common/game.c @@ -643,6 +643,8 @@ gi_copy( MPFORMAL CurGameInfo* destGI, const CurGameInfo* srcGI ) replaceStringIfDifferent( mpool, &destPl->name, srcPl->name ); replaceStringIfDifferent( mpool, &destPl->password, srcPl->password ); + replaceStringIfDifferent( mpool, &destPl->dictName, + srcPl->dictName ); destPl->secondsUsed = srcPl->secondsUsed; destPl->robotIQ = srcPl->robotIQ; destPl->isLocal = srcPl->isLocal;