mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
- fixed some warnings
This commit is contained in:
parent
1d748b72a8
commit
932bbee928
3 changed files with 3 additions and 2 deletions
|
@ -34,7 +34,7 @@
|
|||
#include <stdarg.h>
|
||||
#include "t_script.h"
|
||||
#include "v_text.h"
|
||||
#include "g_levellocals.h"""
|
||||
#include "g_levellocals.h"
|
||||
|
||||
CVAR(Bool, script_debug, false, 0)
|
||||
|
||||
|
|
|
@ -1088,6 +1088,7 @@ void G_Ticker ()
|
|||
AM_ToggleMap ();
|
||||
gameaction = ga_nothing;
|
||||
break;
|
||||
default:
|
||||
case ga_nothing:
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -98,7 +98,7 @@ typedef TMap<FName, int> FDialogueMap; // maps actor class names to dialogue
|
|||
|
||||
struct FLevelLocals
|
||||
{
|
||||
FLevelLocals() : tagManager(this), Behaviors(this) {}
|
||||
FLevelLocals() : Behaviors(this), tagManager(this) {}
|
||||
|
||||
friend class MapLoader;
|
||||
|
||||
|
|
Loading…
Reference in a new issue