mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
C-CON: Fix a harmless "Internal compiler error" warning when using quick structure access on userdef.
git-svn-id: https://svn.eduke32.com/eduke32@5354 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
f69f1e73df
commit
efe58c71f9
1 changed files with 3 additions and 1 deletions
|
@ -1719,7 +1719,9 @@ static void C_GetNextVarType(int32_t type)
|
|||
|
||||
textptr++;
|
||||
}
|
||||
*g_scriptPtr++ = g_iThisActorID; // help out the VM by inserting a dummy index
|
||||
|
||||
bitptr[(g_scriptPtr-script)>>3] &= ~(BITPTR_POINTER<<((g_scriptPtr-script)&7));
|
||||
*g_scriptPtr++ = 0; // help out the VM by inserting a dummy index
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue