1
0
Эх сурвалжийг харах

libobs: Remove unnecessary blend_type assignment

The code pattern for all other assignments skips the default value.
Detected by PVS Studio.
Richard Stanway 3 жил өмнө
parent
commit
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;