Make linux compile with latest changes

This commit is contained in:
ehouse 2004-11-09 02:06:32 +00:00
parent fbc2f86187
commit 4971a622ce
3 changed files with 6 additions and 1 deletions

View file

@ -50,6 +50,8 @@ enum {
STRD_TRADED,
STR_LOSTTURN,
STRS_VALUES_HEADER,
STR_LAST
};

View file

@ -493,7 +493,7 @@ tile_values( GtkWidget* widget, GtkAppGlobals* globals )
globals,
CHANNEL_NONE,
catOnClose );
server_formatPoolCounts( globals->cGlobals.game.server, stream, 5 );
server_formatDictCounts( globals->cGlobals.game.server, stream, 5 );
stream_putU8( stream, '\n' );
stream_destroy( stream );
}

View file

@ -458,6 +458,9 @@ linux_util_getUserString( XW_UtilCtxt* uc, XP_U16 code )
case STR_LOSTTURN:
return "Lost turn";
case STRS_VALUES_HEADER:
return "%s counts/values:\n";
default:
return "unknown code to linux_util_getUserString";
}