minor stuff..

git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@1343 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
Ozkan Sezer 2016-09-12 14:03:01 +00:00
parent 3ad8b20337
commit c0d6f2e736
2 changed files with 1 additions and 3 deletions

View file

@ -55,6 +55,7 @@ int main (int argc, char **argv)
f = fopen (argv[1], "rb"); f = fopen (argv[1], "rb");
if (f == NULL) if (f == NULL)
{ {
free(buf);
printf ("Couldn't open %s\n", argv[1]); printf ("Couldn't open %s\n", argv[1]);
return 1; return 1;
} }

View file

@ -319,9 +319,6 @@ void Sys_Error (const char *error, ...)
SDL_Delay (3000); /* show the console 3 more seconds */ SDL_Delay (3000); /* show the console 3 more seconds */
} }
// shut down QHOST hooks if necessary
// DeinitConProc ();
exit (1); exit (1);
} }