diff options
| author | Bryan Hoyle <starfoxprime@gmail.com> | 2012-11-16 22:03:54 (GMT) |
|---|---|---|
| committer | Bryan Hoyle <starfoxprime@gmail.com> | 2012-11-16 22:03:54 (GMT) |
| commit | 34ed62d685e7a9a47b85d4f0f92b8fd0487dfedf (patch) | |
| tree | 7a790c6edfa72e9bbfd86346f900c5bfcfacb2d7 /src/render/RenderView.cpp | |
| parent | b6d2b95f4daad9cb38cb559cb99b27b316d15830 (diff) | |
| download | powder-34ed62d685e7a9a47b85d4f0f92b8fd0487dfedf.zip powder-34ed62d685e7a9a47b85d4f0f92b8fd0487dfedf.tar.gz | |
Fixed issue with opengl-renderer, missing semicolon
Diffstat (limited to 'src/render/RenderView.cpp')
| -rw-r--r-- | src/render/RenderView.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/render/RenderView.cpp b/src/render/RenderView.cpp index 333fe76..ad299b0 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 |
