Skip to content

Commit

Permalink
Fixed missing case statements
Browse files Browse the repository at this point in the history
  • Loading branch information
eugen2891 committed May 24, 2022
1 parent b33e3c5 commit 50a9578
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cgltf_write.h
Original file line number Diff line number Diff line change
Expand Up @@ -799,7 +799,7 @@ static const char* cgltf_write_str_path_type(cgltf_animation_path_type path_type
return "scale";
case cgltf_animation_path_type_weights:
return "weights";
case cgltf_animation_path_type_invalid:
default:
break;
}
return "invalid";
Expand All @@ -815,6 +815,8 @@ static const char* cgltf_write_str_interpolation_type(cgltf_interpolation_type i
return "STEP";
case cgltf_interpolation_type_cubic_spline:
return "CUBICSPLINE";
default:
break;
}
return "invalid";
}
Expand Down

0 comments on commit 50a9578

Please sign in to comment.