(svn r1260) -Fix: [1090357] Patch for braindead MinGW compiler (luzi82)
authordarkvater
Thu, 23 Dec 2004 19:33:17 +0000
changeset 790 e19caa5f0ddf
parent 789 85be14beeb57
child 791 dc58c928b828
(svn r1260) -Fix: [1090357] Patch for braindead MinGW compiler (luzi82)
player_gui.c
--- a/player_gui.c	Thu Dec 23 19:23:56 2004 +0000
+++ b/player_gui.c	Thu Dec 23 19:33:17 2004 +0000
@@ -16,7 +16,7 @@
 #include "network_client.h"
 #endif
 
-static void DoShowPlayerFinances(int player, bool small);
+static void DoShowPlayerFinances(int player, bool show_small);
 
 
 static void DrawPlayerEconomyStats(Player *p, byte mode)
@@ -210,12 +210,12 @@
 	&_other_player_finances_desc,&_other_player_finances_small_desc,
 };
 
-static void DoShowPlayerFinances(int player, bool small)
+static void DoShowPlayerFinances(int player, bool show_small)
 {
 	Window *w;
 	int mode;
 
-	mode = ((byte)player != _local_player)*2 + small;
+	mode = ((byte)player != _local_player)*2 + show_small;
 	w = AllocateWindowDescFront( desc_table[mode], player);
 	if (w) {
 		w->caption_color = w->window_number;