- Fixed: dumpmap crashed when used outside a map.

- Exported A_DeQueueCorpse to DECORATE. It seems I forgot this when exporting
  A_QueueCorpse.



SVN r542 (trunk)
This commit is contained in:
Christoph Oelckers 2007-09-02 09:57:08 +00:00
commit c06bd09ee7
6 changed files with 17 additions and 2 deletions

View file

@ -32,6 +32,12 @@ CCMD (dumpmap)
Printf ("Usage: dumpmap <wadname> [mapname]\n");
return;
}
if (gamestate != GS_LEVEL)
{
Printf ("You can only dump a map when inside a level.\n");
return;
}
if (argv.argc() < 3)
{