Fixed running Drape on iOS simulator

This commit is contained in:
r.kuznetsov 2015-10-23 15:48:35 +03:00
parent e9b4be7d6e
commit 4fe196ed84

View file

@ -173,7 +173,7 @@ drape_ptr<HWTexture> OpenGLHWTextureAllocator::CreateTexture()
drape_ptr<HWTextureAllocator> CreateAllocator()
{
#if defined(OMIM_OS_IPHONE)
#if defined(OMIM_OS_IPHONE) && !defined(OMIM_OS_IPHONE_SIMULATOR)
return make_unique_dp<HWTextureAllocatorApple>();
#else
return make_unique_dp<OpenGLHWTextureAllocator>();