341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
|
OFString *msg =
[OFString stringWithFormat:@"%@%@ (%s)\n", s, o, SDL_GetError()];
[Cube.sharedInstance showMessage:msg];
[OFApplication terminateWithStatus:1];
}
void *
alloc(int s) // for some big chunks... most other allocs use the memory pool
{
void *b = calloc(1, s);
if (!b)
fatal(@"out of memory!");
return b;
}
void
quit() // normal exit
{
[Cube.sharedInstance quit];
}
COMMAND(quit, ARG_NONE)
|
<
<
<
<
<
<
<
<
<
|
341
342
343
344
345
346
347
348
349
350
351
352
353
354
|
OFString *msg =
[OFString stringWithFormat:@"%@%@ (%s)\n", s, o, SDL_GetError()];
[Cube.sharedInstance showMessage:msg];
[OFApplication terminateWithStatus:1];
}
void
quit() // normal exit
{
[Cube.sharedInstance quit];
}
COMMAND(quit, ARG_NONE)
|