diff options
Diffstat (limited to 'src/gui/gui.cpp')
-rw-r--r-- | src/gui/gui.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp index 6cc05910..cf4c5b36 100644 --- a/src/gui/gui.cpp +++ b/src/gui/gui.cpp @@ -156,24 +156,12 @@ void Gui::logic() void Gui::draw() { - //guiGraphics->_beginDraw(); - guiGraphics->pushClipArea(guiTop->getDimension()); guiTop->draw(guiGraphics); guiGraphics->popClipArea(); - - //guiGraphics->_endDraw(); } void Gui::focusNone() { focusHandler->focusNone(); } - -void init_gui(Graphics *graphics) { - gui = new Gui(graphics); -} - -void gui_exit() { - delete gui; -} |