I think this:

Code:
continue_handle = file_open_read("my_save1.SAV");
if (continue_handle) continue_pan.flags = VISIBLE;
file_close(continue_handle);


must be changed to:

continue_handle = file_open_read("my_save1.SAV");
if (continue_handle) {continue_pan.flags = VISIBLE;
file_close(continue_handle);}

wink