Made all the examples Emscripten friendly.

cWindow::Display( bool clear = false ) now doesn't Clear by default.
Fixed a bug in cSprite::GetAABB().
This commit is contained in:
Martín Lucas Golini
2013-11-14 02:30:46 -03:00
parent d40a10a07c
commit 2e016791da
10 changed files with 314 additions and 270 deletions

View File

@@ -199,7 +199,7 @@ void MainLoop()
Sys::Sleep( 100 ); /// Sleep 100 ms
}
win->Display( false );
win->Display();
}
EE_MAIN_FUNC int main (int argc, char * argv [])