mirror of
https://github.com/SWG-Source/src.git
synced 2026-07-29 23:15:56 -04:00
more warning fixes
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user