mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-12 23:54:37 +00:00
SW: Fix -Wimplicit-fallthrough
git-svn-id: https://svn.eduke32.com/eduke32@7533 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
dc049cdf41
commit
e4975c522b
2 changed files with 3 additions and 4 deletions
|
@ -272,12 +272,11 @@ DoShadowFindGroundPoint(uspritetype * sp)
|
||||||
loz = DoShadowFindGroundPoint(sp);
|
loz = DoShadowFindGroundPoint(sp);
|
||||||
hsp->cstat = bak_cstat;
|
hsp->cstat = bak_cstat;
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
case HIT_SECTOR:
|
case HIT_SECTOR:
|
||||||
{
|
break;
|
||||||
return loz;
|
|
||||||
}
|
|
||||||
|
|
||||||
default:
|
default:
|
||||||
ASSERT(TRUE == FALSE);
|
ASSERT(TRUE == FALSE);
|
||||||
|
@ -285,7 +284,6 @@ DoShadowFindGroundPoint(uspritetype * sp)
|
||||||
}
|
}
|
||||||
|
|
||||||
return loz;
|
return loz;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
|
|
|
@ -1125,6 +1125,7 @@ Keys3D(void)
|
||||||
sector[currsector].ceilingpicnum = temppicnum;
|
sector[currsector].ceilingpicnum = temppicnum;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
searchpicnum = sector[searchsector].floorpicnum;
|
searchpicnum = sector[searchsector].floorpicnum;
|
||||||
if (highlightsectorcnt <= 0)
|
if (highlightsectorcnt <= 0)
|
||||||
|
|
Loading…
Reference in a new issue