Demo fixes.

--HG--
branch : dev
This commit is contained in:
Martí­n Lucas Golini
2017-02-18 16:53:08 -03:00
parent b083c38ed6
commit 63ceea60d8
8 changed files with 97 additions and 106 deletions

View File

@@ -10,7 +10,7 @@ EE::Window::Window * win = NULL;
float circ = 0, circ2 = 0;
int op = 1;
void MainLoop()
void mainLoop()
{
// Clear the screen buffer
win->clear();
@@ -105,7 +105,7 @@ EE_MAIN_FUNC int main (int argc, char * argv [])
// {
// MainLoop();
// }
win->runMainLoop( &MainLoop );
win->runMainLoop( &mainLoop );
}
// Destroy the engine instance. Destroys all the windows and engine singletons.