summaryrefslogtreecommitdiff
path: root/src/control/PathFind.h
diff options
context:
space:
mode:
authorNikolay Korolev <nickvnuk@gmail.com>2020-05-30 20:09:58 +0300
committerNikolay Korolev <nickvnuk@gmail.com>2020-05-30 20:09:58 +0300
commit49a897c3b3371ed59ea314a0359f3ed989f191e9 (patch)
treec607baa0208324c359f8365409de0eeff687087f /src/control/PathFind.h
parent09c9e16cb122f2939f60be7565712324897bd5f9 (diff)
better name
Diffstat (limited to 'src/control/PathFind.h')
-rw-r--r--src/control/PathFind.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/control/PathFind.h b/src/control/PathFind.h
index 171a79c5..e481f4c6 100644
--- a/src/control/PathFind.h
+++ b/src/control/PathFind.h
@@ -88,7 +88,7 @@ struct CPathNode
float GetY(void) { return y/8.0f; }
float GetZ(void) { return z/8.0f; }
bool HasDivider(void) { return width != 0; }
- float GetDivider(void) { return width/(2*8.0f); }
+ float GetDividerWidth(void) { return width/(2*8.0f); }
CPathNode *GetPrev(void);
CPathNode *GetNext(void);
void SetPrev(CPathNode *node);