Clarified some logic. Made it 64bit happy.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@878 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2005-02-17 03:32:18 +00:00
parent 9fbeb58384
commit 2c3c36f906
1 changed files with 1 additions and 1 deletions

View File

@ -384,7 +384,7 @@ qbyte *W_ConvertWAD3Texture(miptex_t *tex, int *width, int *height, qboolean *us
if (!data)
return NULL;
in = (qbyte *)((int) tex + tex->offsets[0]);
in = (qbyte *)tex + tex->offsets[0];
*width = tex->width;
*height = tex->height;