mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 14:52:01 +00:00
Fix problem with C-CON sector and wall structure access. Oops.
git-svn-id: https://svn.eduke32.com/eduke32@5587 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
f8e1d814ce
commit
b36f2bdc7f
1 changed files with 2 additions and 2 deletions
|
@ -3675,7 +3675,7 @@ DO_DEFSTATE:
|
|||
continue;
|
||||
|
||||
BITPTR_CLEAR(g_scriptPtr-script);
|
||||
*g_scriptPtr++=lLabelID;
|
||||
*g_scriptPtr++=SectorLabels[lLabelID].lId;
|
||||
|
||||
C_GetNextVarType((tw == CON_GETSECTOR) ? GAMEVAR_READONLY : 0);
|
||||
continue;
|
||||
|
@ -3745,7 +3745,7 @@ DO_DEFSTATE:
|
|||
continue;
|
||||
|
||||
BITPTR_CLEAR(g_scriptPtr-script);
|
||||
*g_scriptPtr++=lLabelID;
|
||||
*g_scriptPtr++=WallLabels[lLabelID].lId;
|
||||
|
||||
C_GetNextVarType((tw == CON_GETWALL) ? GAMEVAR_READONLY : 0);
|
||||
continue;
|
||||
|
|
Loading…
Reference in a new issue