mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 11:10:47 +00:00
C-CON: Fix a mistake in r5086 that broke get/setprojectile.
git-svn-id: https://svn.eduke32.com/eduke32@5100 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
0adcc4a3f7
commit
df7a257ce5
1 changed files with 2 additions and 2 deletions
|
@ -4316,7 +4316,7 @@ finish_qsprintf:
|
||||||
case CON_GETPROJECTILE:
|
case CON_GETPROJECTILE:
|
||||||
insptr++;
|
insptr++;
|
||||||
{
|
{
|
||||||
tw = Gv_GetVarX(*insptr++);
|
tw = *insptr++;
|
||||||
int const lLabelID = *insptr++, lVar2 = *insptr++;
|
int const lLabelID = *insptr++, lVar2 = *insptr++;
|
||||||
|
|
||||||
register int32_t const iTile = Gv_GetVarX(tw);
|
register int32_t const iTile = Gv_GetVarX(tw);
|
||||||
|
@ -4328,7 +4328,7 @@ finish_qsprintf:
|
||||||
case CON_SETPROJECTILE:
|
case CON_SETPROJECTILE:
|
||||||
insptr++;
|
insptr++;
|
||||||
{
|
{
|
||||||
tw = Gv_GetVarX(*insptr++);
|
tw = *insptr++;
|
||||||
int const lLabelID = *insptr++, lVar2 = *insptr++;
|
int const lLabelID = *insptr++, lVar2 = *insptr++;
|
||||||
|
|
||||||
register int32_t const iTile = Gv_GetVarX(tw);
|
register int32_t const iTile = Gv_GetVarX(tw);
|
||||||
|
|
Loading…
Reference in a new issue