Skip to content

Commit

Permalink
inputstream: fix return value of CheckAPIVersion
Browse files Browse the repository at this point in the history
  • Loading branch information
FernetMenta committed Aug 5, 2016
1 parent f543b6a commit efcc434
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/addons/InputStream.cpp
Expand Up @@ -75,7 +75,7 @@ bool CInputStream::CheckAPIVersion()
if (dllVersion.compare(INPUTSTREAM_API_VERSION) != 0)
{
CLog::Log(LOGERROR, "CInputStream::CheckAPIVersion - API version does not match");
return true;
return false;
}

return true;
Expand Down

0 comments on commit efcc434

Please sign in to comment.