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:
hendricks266 2015-09-24 06:31:52 +00:00
parent f69f1e73df
commit efe58c71f9

View file

@ -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
{