From 0094acb9fb0c926c175f4a902fb1cfa30d3249b9 Mon Sep 17 00:00:00 2001 From: seedee Date: Tue, 9 Jul 2024 21:26:06 +0100 Subject: [PATCH] Add comment --- src/sdhlt/sdHLCSG/wadpath.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/sdhlt/sdHLCSG/wadpath.h b/src/sdhlt/sdHLCSG/wadpath.h index 8b31c1c3..1f0d669e 100644 --- a/src/sdhlt/sdHLCSG/wadpath.h +++ b/src/sdhlt/sdHLCSG/wadpath.h @@ -9,9 +9,9 @@ typedef struct { char path[_MAX_PATH]; bool usedbymap; // does this map requrie this wad to be included in the bsp? - int usedtextures; // number of textures in this wad the map actually uses - int totaltextures; -} wadpath_t;//!!! the above two are VERY DIFFERENT. ie (usedtextures == 0) != (usedbymap == false) + int usedtextures; // number of textures in this wad the map actually uses + int totaltextures; // total textures in this wad +} wadpath_t; // !!! the above two are VERY DIFFERENT. ie (usedtextures == 0) != (usedbymap == false) extern wadpath_t* g_pWadPaths[MAX_WADPATHS]; extern int g_iNumWadPaths;