diff --git a/libs/drape/render_state.cpp b/libs/drape/render_state.cpp index 55611a203..59c89cc41 100644 --- a/libs/drape/render_state.cpp +++ b/libs/drape/render_state.cpp @@ -267,7 +267,7 @@ void TextureState::ApplyTextures(ref_ptr context, RenderState c descriptor.m_imageDescriptor.imageLayout = VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL; auto const it = bindings.find(texture.first); - ASSERT(it != bindings.end(), ()); + CHECK(it != bindings.end(), (texture.first, " is not found in the program", p->GetName())); descriptor.m_textureSlot = it->second; descriptor.m_id = texture.second->GetID();