[comp.sys.amiga] Request for Interceptor patch

tope@enea.se (Tommy Petersson) (07/18/88)

Someone posted a patch to Interceptor a couple of weeks ago. I
didn't pay much attention to it, since I'm not very interested
in flight simulators. Last week though, a friend of mine bought
the program and is already tired of the code-wheel juggle.

Could someone mail the patch to me (or repost it, usually a lot
of people misses these things and will post requests after mine).

If anyone respond, thanks in advance.

cfchiesa@bsu-cs.UUCP (Christopher Chiesa) (07/22/88)

In article <3750@enea.se>, tope@enea.se (Tommy Petersson) writes:
< Someone posted a patch to Interceptor a couple of weeks ago. I
< didn't pay much attention to it, since I'm not very interested
< in flight simulators. Last week though, a friend of mine bought
< the program and is already tired of the code-wheel juggle.
< 
< Could someone mail the patch to me (or repost it, usually a lot

I am in EXACTLY the same boat on this one.  I'm not a regular reader
of this newsgroup, so if someone could E-mail me the patch at the ad-
dress below (or above, I guess, eh?), I'd appreciate it.  Thanks.
-- 
UUCP: <backbones>!{iuvax,pur-ee,uunet}!bsu-cs!cfchiesa 
cfchiesa@bsu-cs.UUCP                                           

evans@lsrhs.UUCP (Dave Evans) (07/29/88)

In article <3750@enea.se> tope@enea.se (Tommy Petersson) writes:
>Someone posted a patch to Interceptor a couple of weeks ago. I
>didn't pay much attention to it, since I'm not very interested
>in flight simulators. Last week though, a friend of mine bought
>the program and is already tired of the code-wheel juggle.
>
>Could someone mail the patch to me (or repost it, usually a lot
>of people misses these things and will post requests after mine).
>
>If anyone respond, thanks in advance.

Here it is, if you have any problems, mail me.

						Dave,

 | <> UUCP: mit-eddie!mit-caf!lsrhs!evans | ARPA: lsrhs!evans@caf.mit.edu <>|
 | _________________________________________________________________________|
--------------------------------------------------------------------------
/*
 *      f18fix.c by Sean Casey, PUBLIC DOMAIN.
 */

#include "fcntl.h"

main()
{
        char s[8], zero = 0;
        char *fn = "df0:F-18 Interceptor";
        int fp;

        puts("Insert copy of F-18 Interceptor into DF0: and press RETURN:\n");
        gets(s);

        if ((fp = open(fn, O_RDWR)) < 0) {
                puts("Couldn't open file \"DF0:F-18 Interceptor\"\n");
                exit(-1);
        }

        lseek(fp, (long) 0x1cd8d, 0);
        write(fp, &zero, 1);
        lseek(fp, (long) 0x1cd9d, 0);
        write(fp, &zero, 1);
        lseek(fp, (long) 0x1cdad, 0);
        write(fp, &zero, 1);
        lseek(fp, (long) 0x1cdbb, 0);
        write(fp, &zero, 1);
        close(fp);
}