(svn r3337) Remove an unused variable and add 2 times static
This commit is contained in:
		| @@ -43,7 +43,7 @@ enum { | |||||||
| #define DEF_UDP_RECEIVE_COMMAND(type) void NetworkPacketReceive_ ## type ## _command(Packet *p, struct sockaddr_in *client_addr) | #define DEF_UDP_RECEIVE_COMMAND(type) void NetworkPacketReceive_ ## type ## _command(Packet *p, struct sockaddr_in *client_addr) | ||||||
| void NetworkSendUDP_Packet(SOCKET udp, Packet *p, struct sockaddr_in *recv); | void NetworkSendUDP_Packet(SOCKET udp, Packet *p, struct sockaddr_in *recv); | ||||||
|  |  | ||||||
| NetworkClientState _udp_cs; | static NetworkClientState _udp_cs; | ||||||
|  |  | ||||||
| DEF_UDP_RECEIVE_COMMAND(PACKET_UDP_CLIENT_FIND_SERVER) | DEF_UDP_RECEIVE_COMMAND(PACKET_UDP_CLIENT_FIND_SERVER) | ||||||
| { | { | ||||||
|   | |||||||
							
								
								
									
										2
									
								
								signs.c
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								signs.c
									
									
									
									
									
								
							| @@ -10,6 +10,8 @@ | |||||||
| #include "command.h" | #include "command.h" | ||||||
| #include "variables.h" | #include "variables.h" | ||||||
|  |  | ||||||
|  | static SignStruct *_new_sign_struct; | ||||||
|  |  | ||||||
| enum { | enum { | ||||||
| 	/* Max signs: 64000 (4 * 16000) */ | 	/* Max signs: 64000 (4 * 16000) */ | ||||||
| 	SIGN_POOL_BLOCK_SIZE_BITS = 2,       /* In bits, so (1 << 2) == 4 */ | 	SIGN_POOL_BLOCK_SIZE_BITS = 2,       /* In bits, so (1 << 2) == 4 */ | ||||||
|   | |||||||
							
								
								
									
										2
									
								
								signs.h
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								signs.h
									
									
									
									
									
								
							| @@ -51,8 +51,6 @@ static inline bool IsSignIndex(uint index) | |||||||
| #define FOR_ALL_SIGNS_FROM(ss, start) for (ss = GetSign(start); ss != NULL; ss = (ss->index + 1 < GetSignPoolSize()) ? GetSign(ss->index + 1) : NULL) | #define FOR_ALL_SIGNS_FROM(ss, start) for (ss = GetSign(start); ss != NULL; ss = (ss->index + 1 < GetSignPoolSize()) ? GetSign(ss->index + 1) : NULL) | ||||||
| #define FOR_ALL_SIGNS(ss) FOR_ALL_SIGNS_FROM(ss, 0) | #define FOR_ALL_SIGNS(ss) FOR_ALL_SIGNS_FROM(ss, 0) | ||||||
|  |  | ||||||
| VARDEF SignStruct *_new_sign_struct; |  | ||||||
|  |  | ||||||
| VARDEF bool _sign_sort_dirty; | VARDEF bool _sign_sort_dirty; | ||||||
| VARDEF uint16 *_sign_sort; | VARDEF uint16 *_sign_sort; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -10,7 +10,6 @@ | |||||||
| #include "window.h" | #include "window.h" | ||||||
| #include "gui.h" | #include "gui.h" | ||||||
| #include "viewport.h" | #include "viewport.h" | ||||||
| #include "gfx.h" |  | ||||||
| #include "sound.h" | #include "sound.h" | ||||||
| #include "command.h" | #include "command.h" | ||||||
| #include "vehicle.h" | #include "vehicle.h" | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 tron
					tron