Skip to content

Commit

Permalink
Fix copy and paste bug
Browse files Browse the repository at this point in the history
The implementation of DeepTiledInputPart::tileXSize was copy and pasted from the function above but not changed. This causes it tor return incorrect values.
  • Loading branch information
fpsunflower committed Nov 20, 2015
1 parent 9101514 commit 501b654
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OpenEXR/IlmImf/ImfDeepTiledInputPart.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ DeepTiledInputPart::isComplete () const
unsigned int
DeepTiledInputPart::tileXSize () const
{
return file->isComplete();
return file->tileXSize();
}


Expand Down

0 comments on commit 501b654

Please sign in to comment.