Compile fix for the new GLM version

This commit is contained in:
Alexander Bock
2015-10-27 14:24:09 -05:00
parent 48d8d9e029
commit 26520ed63b

View File

@@ -112,7 +112,7 @@ RenderableVolumeGL::RenderableVolumeGL(const ghoul::Dictionary& dictionary)
glm::vec4 scalingVec4(_boxScaling, _w);
success = dictionary.getValue(KeyBoxScaling, scalingVec4);
if (success) {
_boxScaling = scalingVec4.xyz;
_boxScaling = scalingVec4.xyz();
_w = scalingVec4.w;
}
else {