#Change static byte to static int where necessary.

Index: xtux-0.2.030306/src/common/entity_type.c
===================================================================
--- xtux-0.2.030306.orig/src/common/entity_type.c	2006-05-16 02:53:15.000000000 +0200
+++ xtux-0.2.030306/src/common/entity_type.c	2006-05-16 02:53:27.000000000 +0200
@@ -11,7 +11,7 @@
 #define ENTLIST "entities"
 
 static ent_type_t **entity_type_table; /*  Size = num_entity_types */
-static byte num_entity_types;
+static int num_entity_types;
 
 static ent_type_t *et_root;
 static ent_type_t *et_tail;
Index: xtux-0.2.030306/src/common/weapon_type.c
===================================================================
--- xtux-0.2.030306.orig/src/common/weapon_type.c	2006-05-16 02:53:15.000000000 +0200
+++ xtux-0.2.030306/src/common/weapon_type.c	2006-05-16 02:53:33.000000000 +0200
@@ -10,7 +10,7 @@
 #define WEAPFILE "weapons"
 
 static weap_type_t **weapon_type_table; /*  Size = num_weapon_types */
-static byte num_weapon_types;
+static int num_weapon_types;
 
 static weap_type_t *wt_root;
 static weap_type_t *wt_tail;
