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 a79326c0ac
commit 6994d451fe
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
AppDelegate app;
CCEGLView* eglView = CCEGLView::sharedOpenGLView();
eglView->setFrameSize(800, 480);
eglView->setFrameSize(800, 500);
return CCApplication::sharedApplication()->run();
}