mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-13 07:58:04 +00:00
Fix this fuckery: http://forums.duke4.net/index.php?showtopic=3646
git-svn-id: https://svn.eduke32.com/eduke32@1855 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
46964b322b
commit
f037cdc827
1 changed files with 3 additions and 1 deletions
|
@ -2721,8 +2721,10 @@ CHECKINV1:
|
||||||
|
|
||||||
aGameVars[g_iReturnVarID].val.lValue = j;
|
aGameVars[g_iReturnVarID].val.lValue = j;
|
||||||
|
|
||||||
switch (j)
|
switch ((int32_t)j)
|
||||||
{
|
{
|
||||||
|
case -1:
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
VM_OnEvent(EVENT_WEAPKEY1+j,p->i,snum, -1);
|
VM_OnEvent(EVENT_WEAPKEY1+j,p->i,snum, -1);
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue