This is my data Folder ... as you can see, the game.sys file is there and is populated ...
This is my code ...
Code: Select all
@Initialise
Code: Select all
Procedure Initialise
Local Base_prize%,F,G,Top%
World_cup!=False
'
@Load_sys
'
Code: Select all
Procedure Load_sys
Local Dtype$
'
Dim League$(26)
Game$="KIKABOUT"
Open "I",#1,"c:\"+Game$+"\GAME.SYS"
Line Input #1,Path$
Line Input #1,Prog_dir$
I then get a message that the file doesn't exist ...
So I add a line to print the details of the File path ...
Code: Select all
Procedure Load_sys
Local Dtype$
'
Dim League$(26)
Game$="KIKABOUT"
print "c:\"+Game$+"\GAME.SYS" <<<<< Print the path below, which apparently doesn't exist
Open "I",#1,"c:\"+Game$+"\GAME.SYS"
Line Input #1,Path$
Line Input #1,Prog_dir$
... and it crashes !!!
Please help me, I have no idea why it can't see the file or what the error message even means !!!
