mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-10 22:05:06 +00:00
gfx-effect-source: Fix validity check
Had the check inverted oops.
This commit is contained in:
parent
c88535c7ab
commit
2b2f87e6fc
1 changed files with 1 additions and 1 deletions
|
@ -726,7 +726,7 @@ void gfx::effect_source::effect_source::load_file(std::string file)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (_cb_valid)
|
if (_cb_valid)
|
||||||
skip = skip || _cb_valid(prm);
|
skip = skip || !_cb_valid(prm);
|
||||||
if (skip)
|
if (skip)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue