diff options
author | Paweł Redman <pawel.redman@gmail.com> | 2017-11-08 12:33:43 +0100 |
---|---|---|
committer | Paweł Redman <pawel.redman@gmail.com> | 2017-11-08 12:33:43 +0100 |
commit | 747c89f4c0d95082e113ef13c5278b0055637ff9 (patch) | |
tree | 702822df5f91f74da8b8bb54bcde8aa197f5b124 /src/path_finder.cpp | |
parent | cdd75000effac0216588766234cfa5b3e8e304d5 (diff) |
Fix entity node elimination.
Diffstat (limited to 'src/path_finder.cpp')
-rw-r--r-- | src/path_finder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/path_finder.cpp b/src/path_finder.cpp index 15b1614..c8cd253 100644 --- a/src/path_finder.cpp +++ b/src/path_finder.cpp @@ -17,7 +17,7 @@ path_finder_t::~path_finder_t() void path_finder_t::setup_nodes(v2f_t src_, v2f_t dst_, cflags_t cflags_) { - rectf_t src_margin, dst_margin, bounds; + rectf_t src_margin, dst_margin; tile_index_t end; src = src_; |