CommonHostInterface: Fix minor log message typo

This commit is contained in:
Albert Liu 2020-06-16 09:48:19 -07:00
parent b141042952
commit 8a94fc944a

View file

@ -1154,7 +1154,7 @@ bool CommonHostInterface::AddAxisToInputMap(const std::string& binding, const st
if (!axis_index ||
!m_controller_interface->BindControllerAxis(*controller_index, *axis_index, std::move(handler)))
{
Log_WarningPrintf("Failed to bind controller axis '%s' to axi", binding.c_str());
Log_WarningPrintf("Failed to bind controller axis '%s' to axis", binding.c_str());
return false;
}