libobs: Remove unnecessary blend_type assignment

The code pattern for all other assignments skips the default value.
Detected by PVS Studio.
This commit is contained in:
Richard Stanway 2022-04-19 03:14:24 +02:00
parent 0bc955bdf2
commit 42ce624b13
No known key found for this signature in database
GPG key ID: 4F96FCA24BCE7BA1

View file

@ -1064,9 +1064,7 @@ static void scene_load_item(struct obs_scene *scene, obs_data_t *item_data)
item->blend_type = OBS_BLEND_NORMAL;
if (blend_str) {
if (astrcmpi(blend_str, "normal") == 0)
item->blend_type = OBS_BLEND_NORMAL;
else if (astrcmpi(blend_str, "additive") == 0)
if (astrcmpi(blend_str, "additive") == 0)
item->blend_type = OBS_BLEND_ADDITIVE;
else if (astrcmpi(blend_str, "subtract") == 0)
item->blend_type = OBS_BLEND_SUBTRACT;