Subversion Repositories shark

Compare Revisions

Regard whitespace Rev 1547 → Rev 1546

/demos/trunk/base/initgraph.c
120,7 → 120,7
shutdown_task_PID = task_create("Shutdown Task",shutdown_task_body,&nrt,NULL);
if (shutdown_task_PID == NIL) {
sys_shutdown_message("Error: Cannot create shutdown task\n");
exit(0);
sys_end();
}
 
}
147,7 → 147,7
cprintf("Error: Cannot open graphical mode\n");
KEYB26_close();
INPUT26_close();
exit(0);
sys_end();
}
FB26_use_grx(FRAME_BUFFER_DEVICE);
191,6 → 191,8
 
sys_shutdown_message("-- S.Ha.R.K. Closed --\n");
 
sys_abort_shutdown(0);
 
return NULL;
 
}