- Fixed: A_Explode wants the distance parameter as an int, not a fixed_t.

- some minor DECORATE fixes.


SVN r1173 (trunk)
This commit is contained in:
Christoph Oelckers 2008-08-16 08:11:39 +00:00
commit fcdef6a0de
9 changed files with 20 additions and 15 deletions

View file

@ -764,7 +764,7 @@ static void G_DoParseMapInfo (int lump)
case MITL_MAP: // map <MAPNAME> <Nice Name>
{
char maptemp[8];
char *mapname;
const char *mapname;
levelflags = defaultinfo.flags;
sc.MustGetString ();
@ -989,7 +989,7 @@ static void ParseMapInfoLower (FScanner &sc,
EndSequence newSeq;
bool useseq = false;
char maptemp[8];
char *mapname;
const char *mapname;
sc.MustGetString ();
mapname = sc.String;