浏览代码

libobs: Remove unnecessary blend_type assignment

The code pattern for all other assignments skips the default value.
Detected by PVS Studio.
Richard Stanway 3 年之前
父节点
当前提交
42ce624b13
共有 1 个文件被更改,包括 1 次插入3 次删除
  1. 1 3
      libobs/obs-scene.c

+ 1 - 3
libobs/obs-scene.c

@@ -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;