mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
Fix -Wfallthrough error in gamevars.h
git-svn-id: https://svn.eduke32.com/eduke32@8495 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
4050ce156f
commit
33ad4b9860
1 changed files with 1 additions and 1 deletions
|
@ -255,7 +255,7 @@ static FORCE_INLINE void __fastcall Gv_DivVar(int const id, int32_t const d)
|
|||
{
|
||||
case GAMEVAR_PERACTOR: iptr = &var.pValues[vm.spriteNum & (MAXSPRITES-1)]; goto jmp;
|
||||
case GAMEVAR_PERPLAYER: iptr = &var.pValues[vm.playerNum & (MAXPLAYERS-1)]; fallthrough__;
|
||||
jmp: default: *iptr = libdivide_s32_do(*iptr, dptr); break;
|
||||
default: jmp: *iptr = libdivide_s32_do(*iptr, dptr); break;
|
||||
|
||||
case GAMEVAR_INT32PTR:
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue