From 34ed62d685e7a9a47b85d4f0f92b8fd0487dfedf Mon Sep 17 00:00:00 2001 From: Bryan Hoyle Date: Fri, 16 Nov 2012 17:03:54 -0500 Subject: [PATCH] Fixed issue with opengl-renderer, missing semicolon --- src/render/RenderView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/render/RenderView.cpp b/src/render/RenderView.cpp index 333fe769f..ad299b0b2 100644 --- a/src/render/RenderView.cpp +++ b/src/render/RenderView.cpp @@ -237,7 +237,7 @@ RenderView::RenderView(): AddComponent(tCheckbox); #ifdef OGLR - tCheckbox = new ui::Checkbox(ui::Point(checkboxOffset, YRES+4), ui::Point(30, 16), "Effect", "I don't know what this does...") //I would remove the whole checkbox, but then there's a large empty space + tCheckbox = new ui::Checkbox(ui::Point(checkboxOffset, YRES+4), ui::Point(30, 16), "Effect", "I don't know what this does..."); //I would remove the whole checkbox, but then there's a large empty space #else tCheckbox = new ui::Checkbox(ui::Point(checkboxOffset, YRES+4), ui::Point(30, 16), "Effect", "Does nothing"); #endif