From 7d499ce32a3e2406c5e973b83d8b99223d650559 Mon Sep 17 00:00:00 2001 From: James Gregory Date: Fri, 19 Apr 2013 18:17:53 -0700 Subject: [PATCH] Correct the resolution in main.cpp for TestCpp for Emscripten --- samples/Cpp/TestCpp/proj.emscripten/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/Cpp/TestCpp/proj.emscripten/main.cpp b/samples/Cpp/TestCpp/proj.emscripten/main.cpp index bbaa8a6d23..a2a10f4f27 100644 --- a/samples/Cpp/TestCpp/proj.emscripten/main.cpp +++ b/samples/Cpp/TestCpp/proj.emscripten/main.cpp @@ -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(); }