mirror of
https://github.com/ZDoom/wadext.git
synced 2024-11-21 19:32:32 +00:00
- fixed warning.
This commit is contained in:
parent
418f55ccf7
commit
24010dc4eb
1 changed files with 1 additions and 1 deletions
|
@ -417,7 +417,7 @@ void GenerateTextureFile(const char *name, const char * pTex, int length, const
|
||||||
int i;
|
int i;
|
||||||
const uint32_t* directory;
|
const uint32_t* directory;
|
||||||
|
|
||||||
if (maxoff < uint32_t(numtextures + 1) * 4)
|
if (maxoff < (numtextures + 1) * 4)
|
||||||
{
|
{
|
||||||
printf("%s: Texture directory is too short\n", name);
|
printf("%s: Texture directory is too short\n", name);
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue