summaryrefslogtreecommitdiff
path: root/src/w_wad.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/w_wad.h')
-rw-r--r--src/w_wad.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/w_wad.h b/src/w_wad.h
index 9e65fb1e..bf010d5b 100644
--- a/src/w_wad.h
+++ b/src/w_wad.h
@@ -74,7 +74,7 @@ struct lumpinfo_s
extern void** lumpcache;
extern lumpinfo_t* lumpinfo;
-extern int numlumps;
+extern unsigned int numlumps;
FILE *W_AddFile (char *filename);
void W_Reload (void);
@@ -82,8 +82,8 @@ void W_Reload (void);
int W_CheckNumForName (char* name);
int W_GetNumForName (char* name);
-int W_LumpLength (int lump);
-void W_ReadLump (int lump, void *dest);
+int W_LumpLength (unsigned int lump);
+void W_ReadLump (unsigned int lump, void *dest);
void* W_CacheLumpNum (int lump, int tag);
void* W_CacheLumpName (char* name, int tag);