more warning fixes

This commit is contained in:
DarthArgus
2015-10-14 21:35:04 -05:00
parent 6b1c89032f
commit f71f036f7b
2 changed files with 3 additions and 3 deletions
@@ -200,7 +200,7 @@ void NebulaManager::loadSceneData(std::string const & sceneId)
{
//-- apparently not a space scene
// @todo: need better way to detect this
if (!strncmp(sceneId.c_str(), "space_", 6) != 0)
if (!(strncmp(sceneId.c_str(), "space_", 6) != 0))
WARNING(true, ("NebulaManager no such datatable [%s]", filename.c_str()));
return;
}