Re: Several questions regarding Inform


31 Jul 1995 14:20:19 GMT

I wrote:
> ! Check for time passing midnight
> if (the_time < last_time) day ++;

This was a silly mistake. It should of course be:

!Check for time passing midnight
if (the_time < last_time) {
last_time = the_time;
day ++;
}

--
Gareth Rees