2
0
mirror of https://github.com/rehlds/metamod-r.git synced 2025-04-14 13:30:02 +03:00

Fixed typo

This commit is contained in:
asmodai 2017-05-08 22:33:22 +03:00
parent f667a85282
commit faba9aa354

View File

@ -677,7 +677,7 @@ bool MPlugin::query(void)
return false; return false;
} }
if (!Q_strcmp(m_info->ifvers, META_INTERFACE_VERSION)) if (Q_strcmp(m_info->ifvers, META_INTERFACE_VERSION))
{ {
int mmajor = 0, mminor = 0, pmajor = 0, pminor = 0; int mmajor = 0, mminor = 0, pmajor = 0, pminor = 0;
META_DEBUG(3, "dll: Note: Plugin '%s' interface version didn't match; expected %s, found %s", m_desc, META_INTERFACE_VERSION, m_info->ifvers); META_DEBUG(3, "dll: Note: Plugin '%s' interface version didn't match; expected %s, found %s", m_desc, META_INTERFACE_VERSION, m_info->ifvers);