From bb3308ce0fe8c4bfee24a40f7c9138bb3bd7af4e Mon Sep 17 00:00:00 2001 From: Joshua Granick Date: Tue, 18 Mar 2014 15:46:19 -0700 Subject: [PATCH] Compile fix --- project/src/renderer/opengl/OpenGLS3D.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/project/src/renderer/opengl/OpenGLS3D.cpp b/project/src/renderer/opengl/OpenGLS3D.cpp index dfed22f79..b512bdd37 100644 --- a/project/src/renderer/opengl/OpenGLS3D.cpp +++ b/project/src/renderer/opengl/OpenGLS3D.cpp @@ -308,7 +308,8 @@ value lime_gl_s3d_set_focal_length (value length) ctx->mS3D.mFocalLength = val_float (length); } - + + return alloc_null (); } DEFINE_PRIM (lime_gl_s3d_set_focal_length,1); @@ -336,6 +337,8 @@ value lime_gl_s3d_set_eye_separation (value separation) ctx->mS3D.mEyeSeparation = val_float (separation); } + + return alloc_null (); } DEFINE_PRIM (lime_gl_s3d_set_eye_separation,1);