Silence the gcc 4.4.0 warning by making this code look like it was probably meant to be. I'm not 100% sure this is correct - latest prboom doesn't have that fix.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21857 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
af99a8544f
commit
8cc169cb28
1 changed files with 1 additions and 1 deletions
|
@ -911,7 +911,7 @@ int EV_DoDonut(line_t* line)
|
|||
// killough 4/5/98: changed demo_compatibility to compatibility
|
||||
if (comp[comp_model])
|
||||
{
|
||||
if ((!s2->lines[i]->flags & ML_TWOSIDED) ||
|
||||
if (!(s2->lines[i]->flags & ML_TWOSIDED) ||
|
||||
(s2->lines[i]->backsector == s1))
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue