1
1
forked from 0ad/0ad

Removes unused debug print of backend inside CVideoMode forgotten in 912202ff0c.

This was SVN commit r27185.
This commit is contained in:
Vladislav Belov 2022-10-30 00:43:45 +00:00
parent 3a4c8342a0
commit 480bc48194

View File

@ -539,7 +539,7 @@ bool CVideoMode::CreateBackendDevice(const bool createSDLContext)
m_BackendDevice = Renderer::Backend::GL::CreateDevice(createSDLContext ? m_Window : nullptr, m_Backend == Renderer::Backend::Backend::GL_ARB);
if (!m_BackendDevice && m_Backend == Renderer::Backend::Backend::GL)
{
LOGERROR("Unable to create device for GL backend, switching to ARB.", static_cast<int>(m_Backend));
LOGERROR("Unable to create device for GL backend, switching to ARB.");
m_Backend = Renderer::Backend::Backend::GL_ARB;
return CreateBackendDevice(createSDLContext);
}