Correct the resolution in main.cpp for TestCpp for Emscripten

This commit is contained in:
James Gregory 2013-04-19 18:17:53 -07:00
parent b032fc2d61
commit ae260785ae
1 changed files with 1 additions and 1 deletions

View File

@ -14,6 +14,6 @@ int main(int argc, char **argv)
// create the application instance // create the application instance
AppDelegate app; AppDelegate app;
CCEGLView* eglView = CCEGLView::sharedOpenGLView(); CCEGLView* eglView = CCEGLView::sharedOpenGLView();
eglView->setFrameSize(800, 480); eglView->setFrameSize(800, 500);
return CCApplication::sharedApplication()->run(); return CCApplication::sharedApplication()->run();
} }