Skip to content

Commit

Permalink
Add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
seedee committed Jul 9, 2024
1 parent 118a407 commit 0094acb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/sdhlt/sdHLCSG/wadpath.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 0094acb

Please sign in to comment.