From c4254cd423819fae512877e2ea5c5bc5382a1961 Mon Sep 17 00:00:00 2001 From: Andrzej Kapolka Date: Thu, 23 Jan 2014 18:08:45 -0800 Subject: [PATCH] Fix OS X warning. --- interface/src/ui/MetavoxelEditor.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/interface/src/ui/MetavoxelEditor.cpp b/interface/src/ui/MetavoxelEditor.cpp index d3e4494ac9..df932a9933 100644 --- a/interface/src/ui/MetavoxelEditor.cpp +++ b/interface/src/ui/MetavoxelEditor.cpp @@ -328,6 +328,7 @@ glm::quat MetavoxelEditor::getGridRotation() const { return glm::angleAxis(-90.0f, 1.0f, 0.0f, 0.0f); case GRID_PLANE_YZ: + default: return glm::angleAxis(90.0f, 0.0f, 1.0f, 0.0f); } }