Make linux compile with latest changes

This commit is contained in:
ehouse 2004-11-09 02:06:32 +00:00
parent 6852c51b70
commit 688132b919
3 changed files with 6 additions and 1 deletions

View file

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

View file

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

View file

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