mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-02-21 03:21:28 +00:00
Change type of ops[] to deal with goto *p for EDG compilers
This commit is contained in:
parent
51adcd45e6
commit
10c682acf6
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@
|
|||
static int ExecScriptFunc(VMFrameStack *stack, VMReturn *ret, int numret)
|
||||
{
|
||||
#if COMPGOTO
|
||||
static const void * const ops[256] =
|
||||
static void * const ops[256] =
|
||||
{
|
||||
#define xx(op,sym,mode,alt,kreg,ktype) &&op,
|
||||
#include "vmops.h"
|
||||
|
|
Loading…
Reference in a new issue