From b87f5c5054de7868e9d8524786c5e1e0bf4e7d1a Mon Sep 17 00:00:00 2001 From: ehouse Date: Thu, 13 May 2004 02:13:48 +0000 Subject: [PATCH] catch up with string constant changes --- xwords4/wince/LocalizedStrIncludes.h | 5 +++++ xwords4/wince/cemain.c | 9 +++++++++ 2 files changed, 14 insertions(+) diff --git a/xwords4/wince/LocalizedStrIncludes.h b/xwords4/wince/LocalizedStrIncludes.h index 3c5bf670d..43a08c585 100755 --- a/xwords4/wince/LocalizedStrIncludes.h +++ b/xwords4/wince/LocalizedStrIncludes.h @@ -46,6 +46,11 @@ enum { STR_ROBOT_MOVED, STR_REMOTE_MOVED, + STR_PASSED, + STRSD_SUMMARYSCORED, + STRD_TRADED, + STR_LOSTTURN, + STR_NOT_USED }; diff --git a/xwords4/wince/cemain.c b/xwords4/wince/cemain.c index 91eabb056..cd9c8ba43 100755 --- a/xwords4/wince/cemain.c +++ b/xwords4/wince/cemain.c @@ -1913,6 +1913,15 @@ ce_util_getUserString( XW_UtilCtxt* uc, XP_U16 stringCode ) case STR_REMOTE_MOVED: return (XP_UCHAR*)"Remote player made this move:" XP_CR; + case STR_PASSED: + return (XP_UCHAR*)"Passed"; + case STRSD_SUMMARYSCORED: + return (XP_UCHAR*)"%s:%d"; + case STRD_TRADED: + return (XP_UCHAR*)"Traded %d"; + case STR_LOSTTURN: + return (XP_UCHAR*)"Lost turn"; + default: XP_LOGF( "stringCode=%d", stringCode ); return (XP_UCHAR*)"unknown code";