Fix variable ordering

This commit is contained in:
gamemasterplc 2023-11-23 10:25:18 -06:00
parent ff69afeb4e
commit b3452a8b91
2 changed files with 4 additions and 92 deletions

View file

@ -10,10 +10,11 @@ extern void gclongjmp(jmp_buf *jump, int status);
#define EXEC_KILLED 3
static jmp_buf processjmpbuf;
u32 procfunc;
static u16 processcnt;
static Process *processcur;
static Process *processtop;
static Process *processcur;
static u16 processcnt;
u32 procfunc;
void HuPrcInit(void)
{