Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 1392 → Rev 1391

/demos/trunk/astro/stat.c
19,6 → 19,8
int lives; /* current player lives */
int crash; /* astro vs. rock */
 
extern PID shutdown_task_PID;
 
TASK stat_write()
{
char st[20];
129,7 → 131,7
pid = task_create("StatWrite", stat_write, &ms, NULL);
if (pid == NIL) {
sys_shutdown_message("Could not create task <StatWrite>\n");
sys_end();
task_activate(shutdown_task_PID);
return;
} else
task_activate(pid);