mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-16 01:11:28 +00:00
Fix warning: logical 'and' of equal expressions [-Wlogical-op]
DONT_BUILD. git-svn-id: https://svn.eduke32.com/eduke32@5842 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
a0183c9c42
commit
78f939a2f9
1 changed files with 1 additions and 1 deletions
|
@ -701,7 +701,7 @@ int app_main(int argc, char const * const * argv)
|
|||
// must be after loadpics(), which inits BUILD's cache
|
||||
|
||||
i = MAXTILES-1;
|
||||
if (tilesiz[i].x==0 && tilesiz[i].x==0)
|
||||
if (tilesiz[i].x==0 && tilesiz[i].y==0)
|
||||
{
|
||||
static char R[8*16] = { //
|
||||
0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0,
|
||||
|
|
Loading…
Reference in a new issue