Skip to content

Commit

Permalink
[Particle System] Fixed typographical error.
Browse files Browse the repository at this point in the history
  • Loading branch information
sweetkristas committed Feb 21, 2017
1 parent 6817c09 commit a75c8ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kre/ParticleSystemAffectors.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1262,7 +1262,7 @@ namespace KRE
} else if(uv_node.is_list()) {
for(int n = 0; n != uv_node.num_elements(); ++n) {
float t = uv_node[n]["time"].as_float();
uv_data_.emplace_back(std::make_pair(t, rectf(uv_node["area"])));
uv_data_.emplace_back(std::make_pair(t, rectf(uv_node[n]["area"])));
}
}
transformCoords();
Expand Down

0 comments on commit a75c8ee

Please sign in to comment.