From 62949390955eee6b9f8ae54fa6efb4c518469f43 Mon Sep 17 00:00:00 2001 From: Seth Alves Date: Fri, 22 Jan 2016 10:37:11 -0800 Subject: [PATCH] missed one --- libraries/shared/src/AACube.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/shared/src/AACube.cpp b/libraries/shared/src/AACube.cpp index df50ab0e4c..cdff048e71 100644 --- a/libraries/shared/src/AACube.cpp +++ b/libraries/shared/src/AACube.cpp @@ -483,7 +483,7 @@ bool AACube::containsNaN() const { if (isNaN(_corner.x) || isNaN(_corner.y) || isNaN(_corner.z)) { return true; } - if (_scale != _scale) { + if (isNaN(_scale)) { return true; } return false;