I’m uncommenting out this line in AppDelegate.cpp:
pDirector->enableRetinaDisplay(true);
But when the code gets here, it returns false and retina is not enabled.
// setContentScaleFactor is not supported
if (! m_pobOpenGLView->canSetContentScaleFactor())
{
return false;
}
I’m not sure why this is. I read online that all I had to do was have the enableRetinaDisplay line and that should do it. This is in xcode, with the iphone 5 simulator, in case it matters. Thank you.