/* Copyright (C) Prikol Software 1996-1997 Copyright (C) Aleksey Volynskov 1996-1997 Copyright (C) 2011 This file is part of the Doom2D:Rembo project. Doom2D:Rembo is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. Doom2D:Rembo is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, see or write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #include "glob.h" #include #include //#include #include #include #include #include "keyb.h" #include "sound.h" #include "vga.h" #include "memory.h" #include "files.h" #include "error.h" #include "config.h" #include void close_all(void) { S_done(); S_donemusic(); K_done(); V_done(); M_shutdown(); } void ERR_failinit(char *s,...) { va_list ap; close_all(); va_start(ap,s); vprintf(s,ap); va_end(ap); puts(""); exit(1); } void ERR_fatal(char *s,...) { va_list ap; close_all(); puts("\nКРИТИЧЕСКАЯ ОШИБКА:"); va_start(ap,s); vprintf(s,ap); va_end(ap); puts(""); exit(2); } void ERR_quit(void) { void *p; //V_done(); //if(!(p=malloc(4000))) puts("Спасибо за то, что вы играли в Операцию \"Смятка\"!"); //else { // F_loadres(F_getresid("ENDOOM"),p,0,4000); // memcpy((void*)0xB8000,p,4000);free(p);gotoxy(1,24); //} close_all(); CFG_save(); exit(0); }