Reply to Re: crawling into hole warps in DinkHD
If you don't have an account, just leave the password field blank.
>so it must be a loading into memory thing
This is the source of preload_seq in dink.cpp:
All that stuff in the middle is a commented-out leftover from 1.08, while at the end it returns zero. i.e. it's an empty function that does nothing.
This is the source of preload_seq in dink.cpp:
if (compare(ev[1], (char *)"preload_seq"))
{
/*
h = &h[strlen(ev[1])];
int32 p[20] = {1,0,0,0,0,0,0,0,0,0};
if (get_parms(ev[1], script, h, p))
{
check_seq_status(g_nlist[0]);
}
strcpy(pLineIn, h);
*/
return (0);
}
All that stuff in the middle is a commented-out leftover from 1.08, while at the end it returns zero. i.e. it's an empty function that does nothing.







