Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 299 → Rev 300

/programs/games/doom/trunk/i_system.c
39,6 → 39,7
 
 
#include "i_system.h"
#include "kolibri.h"
 
int mb_used = 6;
 
81,7 → 82,7
byte* I_ZoneBase (int* size)
{
*size = mb_used*1024*1024;
return (byte *) _aligned_malloc(*size, 128);;
return (byte *) UserAlloc(*size);
}
 
 
169,8 → 170,8
// Message first.
va_start (argptr,error);
printf ("Error: ");
printf (error,argptr);
printf (stderr, "\n");
printf (argptr);
printf ("\n");
va_end (argptr);
 
// Shutdown. Here might be other errors.
179,6 → 180,6
 
D_QuitNetGame ();
I_ShutdownGraphics();
getch();
// getch();
exit(-1);
}