From 887e4f914281d512dc75f1cfcf3e87adbd611d15 Mon Sep 17 00:00:00 2001 From: Joseph Jezak Date: Sun, 29 Jun 2014 19:22:11 -0400 Subject: [PATCH] MYST3: Add missing namespace for Euler Orientation. --- engines/myst3/gfx_opengl_shaders.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/myst3/gfx_opengl_shaders.cpp b/engines/myst3/gfx_opengl_shaders.cpp index dfaf8880150..13640da7fcd 100644 --- a/engines/myst3/gfx_opengl_shaders.cpp +++ b/engines/myst3/gfx_opengl_shaders.cpp @@ -220,7 +220,7 @@ void ShaderRenderer::setupCameraPerspective(float pitch, float heading, float fo proj(3,3) = 0.0f; proj.transpose(); - Math::Matrix4 model(pitch, 180.0f - heading, 0.0f, EO_ZXY); + Math::Matrix4 model(pitch, 180.0f - heading, 0.0f, Math::EO_ZXY); model.transpose(); _mvpMatrix = proj * model;