mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2025-02-21 02:51:37 +00:00
- add missing newline to PrintMiscActorInfo
This commit is contained in:
parent
82d7419d34
commit
1215653941
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
//-----------------------------------------------------------------------------
|
||||
//
|
||||
// Copyright 1993-1996 id Software
|
||||
// Copyright 1994-1996 Raven Software
|
||||
|
@ -7415,6 +7415,6 @@ void PrintMiscActorInfo(AActor *query)
|
|||
Printf("Target: %s\n", query->target ? query->target->GetClass()->TypeName.GetChars() : "-");
|
||||
Printf("Last enemy: %s\n", query->lastenemy ? query->lastenemy->GetClass()->TypeName.GetChars() : "-");
|
||||
auto sn = FState::StaticGetStateName(query->state);
|
||||
Printf("State:%s, Tics: %d", sn.GetChars(), query->tics);
|
||||
Printf("State:%s, Tics: %d\n", sn.GetChars(), query->tics);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue