Fix ordering of initalizer list

pull/4705/head
Kim Kulling 2022-08-27 15:20:53 +02:00
parent e4c383324a
commit 02e6c425f9
1 changed files with 1 additions and 2 deletions

View File

@ -219,8 +219,7 @@ struct PmdIk {
float angle_limit; float angle_limit;
std::vector<uint16_t> ik_child_bone_index; std::vector<uint16_t> ik_child_bone_index;
PmdIk() : PmdIk() : ik_bone_index(0), target_bone_index(0), iterations(0), angle_limit(0.0f) {}
ik_child_bone_index(0), target_bone_index(0), iterations(0), angle_limit(0.0f) {}
~PmdIk() = default; ~PmdIk() = default;