src/signs.h
changeset 6248 e4a2ed7e5613
parent 6247 7d81e3a5d803
child 6420 456c275f3313
--- a/src/signs.h	Wed Mar 07 11:47:46 2007 +0000
+++ b/src/signs.h	Wed Mar 07 12:11:48 2007 +0000
@@ -5,7 +5,7 @@
 
 #include "oldpool.h"
 
-typedef struct Sign {
+struct Sign {
 	StringID     str;
 	ViewportSign sign;
 	int32        x;
@@ -14,7 +14,7 @@
 	PlayerByte   owner; // placed by this player. Anyone can delete them though. OWNER_NONE for gray signs from old games.
 
 	SignID       index;
-} Sign;
+};
 
 DECLARE_OLD_POOL(Sign, Sign, 2, 16000)