- fixed some warnings

This commit is contained in:
Christoph Oelckers 2019-01-29 02:16:36 +01:00
parent 1d748b72a8
commit 932bbee928
3 changed files with 3 additions and 2 deletions

View File

@ -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)

View File

@ -1088,6 +1088,7 @@ void G_Ticker ()
AM_ToggleMap ();
gameaction = ga_nothing;
break;
default:
case ga_nothing:
break;
}

View File

@ -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;