Skip to content

Commit

Permalink
Attempt to fix Travis build
Browse files Browse the repository at this point in the history
  • Loading branch information
CelticMinstrel committed Apr 5, 2016
1 parent 71b154b commit 7ee37b6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions data/lua/wml-tags.lua
Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions src/gui/dialogs/addon/list.cpp
Expand Up @@ -52,6 +52,7 @@

#include "utils/functional.hpp"
#include <sstream>
#include <stdexcept>

namespace gui2
{
Expand Down

0 comments on commit 7ee37b6

Please sign in to comment.