The Dink Network

Reply to Re: crawling into hole warps in DinkHD

If you don't have an account, just leave the password field blank.
Username:
Password:
Subject:
Antispam: Enter Dink Smallwood's last name (surname) below.
Formatting: :) :( ;( :P ;) :D >( : :s :O evil cat blood
Bold font Italic font hyperlink Code tags
Message:
 
 
March 29th, 12:52 PM
peasantmb.gif
yeoldetoast
Peasant They/Them Australia
LOOK UPON MY DEFORMED FACE! 
>so it must be a loading into memory thing

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.