From db3b1228bfad7fb42ce708dc93db21d840b07577 Mon Sep 17 00:00:00 2001 From: tron Date: Mon, 3 Oct 2005 21:20:01 +0000 Subject: (svn r3010) Get rid of quite some dubious casts, either by using GB(), proper types or just removing them --- players.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'players.c') diff --git a/players.c b/players.c index e0ec098b1..4ae340a19 100644 --- a/players.c +++ b/players.c @@ -1004,7 +1004,7 @@ int8 SaveHighScoreValueNetwork(void) memset(_highscore_table[LAST_HS_ITEM], 0, sizeof(_highscore_table[0])); /* Copy over Top5 companies */ - for (i = 0; i < lengthof(_highscore_table[LAST_HS_ITEM]) && i < (uint8)count; i++) { + for (i = 0; i < lengthof(_highscore_table[LAST_HS_ITEM]) && i < count; i++) { char buf[sizeof(_highscore_table[0]->company)]; hs = &_highscore_table[LAST_HS_ITEM][i]; @@ -1019,7 +1019,7 @@ int8 SaveHighScoreValueNetwork(void) hs->title = EndGameGetPerformanceTitleFromValue(hs->score); // get the ranking of the local player - if ((*p_cur)->index == (int8)_local_player) + if ((*p_cur)->index == _local_player) player = i; p_cur++; -- cgit v1.2.3-54-g00ecf