Attempt to fix Travis build

This commit is contained in:
Celtic Minstrel 2016-04-05 03:19:26 -04:00
parent 71b154b6e3
commit 7ee37b6f84
2 changed files with 3 additions and 2 deletions

View file

@ -1017,8 +1017,8 @@ function wml_actions.deprecated_message(cfg)
end
function wml_actions.wml_message(cfg)
local logger = logger_aliases[cfg.logger] or ''
wesnoth.log(cfg.logger or 'warn', cfg.message. cfg.to_chat)
local logger = cfg.logger or ''
wesnoth.log(cfg.logger, cfg.message. cfg.to_chat)
end
local function parse_fog_cfg(cfg)

View file

@ -52,6 +52,7 @@
#include "utils/functional.hpp"
#include <sstream>
#include <stdexcept>
namespace gui2
{