Esempio n. 1
0
void check_quick_op() {
	if (!options.enable_quicksave) return;
	if (need_quick_save) {
		if (!is_feather_fall && quick_save()) {
			display_text_bottom("QUICKSAVE");
		} else {
			display_text_bottom("NO QUICKSAVE");
		}
		need_quick_save = 0;
		text_time_total = 24;
		text_time_remaining = 24;
	}
	if (need_quick_load) {
		if (quick_load()) {
			display_text_bottom("QUICKLOAD");
		} else {
			display_text_bottom("NO QUICKLOAD");
		}
		need_quick_load = 0;
		text_time_total = 24;
		text_time_remaining = 24;
	}
}
Esempio n. 2
0
initialise() {
	/* printf("Initialising...\n"); */
	if(!quick_init()){raw_init(); report(); quick_save();}
	finish_init();
}