From 096d335ee207dfd89c0bb331bc63ae9551cc3afa Mon Sep 17 00:00:00 2001 From: David Williams Date: Mon, 30 Mar 2009 21:50:24 +0000 Subject: [PATCH] Small linux fix --- examples/OpenGL/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/OpenGL/main.cpp b/examples/OpenGL/main.cpp index e824ade8..ffc3c2d6 100644 --- a/examples/OpenGL/main.cpp +++ b/examples/OpenGL/main.cpp @@ -25,9 +25,9 @@ int main(int argc, char *argv[]) Volume volData(g_uVolumeSideLength); //Make our volume contain a sphere in the center. - uint16_t minPos = 0; - uint16_t midPos = volData.getSideLength() / 2; - uint16_t maxPos = volData.getSideLength() - 1; + PolyVox::uint16_t minPos = 0; + PolyVox::uint16_t midPos = volData.getSideLength() / 2; + PolyVox::uint16_t maxPos = volData.getSideLength() - 1; createCubeInVolume(volData, Vector3DUint16(minPos, minPos, minPos), Vector3DUint16(maxPos, maxPos, maxPos), 0); createSphereInVolume(volData, 50.0f, 5);