Skip to content

Commit

Permalink
WriteOIIO: bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
devernay committed Jun 6, 2020
1 parent 4b84d12 commit a8be4a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OIIO/WriteOIIO.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1186,7 +1186,7 @@ WriteOIIOPlugin::beginEncodeParts(void* user_data,
std::vector<std::string> planeChannels = plane.getChannels();
if ( plane.getNumComponents() > 0 ) {

for (std::size_t i = 0; i < channels.size(); ++i) {
for (std::size_t i = 0; i < planeChannels.size(); ++i) {
planeChannels[i] = plane.getPlaneLabel() + "." + planeChannels[i];
}
}
Expand Down

0 comments on commit a8be4a6

Please sign in to comment.