summaryrefslogtreecommitdiff
path: root/src/common.hpp
diff options
context:
space:
mode:
authorPaweł Redman <pawel.redman@gmail.com>2017-12-19 14:04:28 +0100
committerPaweł Redman <pawel.redman@gmail.com>2017-12-19 14:04:36 +0100
commitfec522f3c77696ea1d7907a1a2484910f8e391ca (patch)
tree68b64977452531bc804bac7be3b4d45569f9109c /src/common.hpp
parente29c796801dd6b7a406ef457c0c68b4a1c7f527a (diff)
Fix panicking units stopping for no reason.
Diffstat (limited to 'src/common.hpp')
-rw-r--r--src/common.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common.hpp b/src/common.hpp
index 13b843d..a253da5 100644
--- a/src/common.hpp
+++ b/src/common.hpp
@@ -341,7 +341,7 @@ namespace render {
void render_hlrect(rectf_t rect, sf::Color color);
void render_line(v2f_t x0, v2f_t x1, sf::Color color);
- void debug_path(std::list<v2f_t> *path);
+ void debug_path(v2f_t x, std::list<v2f_t> *path);
};
}