From faba9aa3545fcf2656309095e3b4854475c2eee2 Mon Sep 17 00:00:00 2001 From: asmodai Date: Mon, 8 May 2017 22:33:22 +0300 Subject: [PATCH] Fixed typo --- metamod/src/mplugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metamod/src/mplugin.cpp b/metamod/src/mplugin.cpp index da9269f..a448b34 100644 --- a/metamod/src/mplugin.cpp +++ b/metamod/src/mplugin.cpp @@ -677,7 +677,7 @@ bool MPlugin::query(void) 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; META_DEBUG(3, "dll: Note: Plugin '%s' interface version didn't match; expected %s, found %s", m_desc, META_INTERFACE_VERSION, m_info->ifvers);