From 2359fc67055cadd369f6c52805778531efd47ecd Mon Sep 17 00:00:00 2001 From: Woazboat Date: Wed, 29 Apr 2015 00:27:15 +0200 Subject: Fix HasNonZeroLength name now 100% more cs compliant --- src/Vector3.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Vector3.h') diff --git a/src/Vector3.h b/src/Vector3.h index ede6cc851..6164721da 100644 --- a/src/Vector3.h +++ b/src/Vector3.h @@ -78,7 +78,7 @@ public: ); } - inline bool hasNonZeroLength(void) const + inline bool HasNonZeroLength(void) const { return ((x != 0) || (y != 0) || (z != 0)); } -- cgit v1.2.3