Skip to content

Commit

Permalink
print image flipped status in verbose output
Browse files Browse the repository at this point in the history
  • Loading branch information
kambala-decapitator committed Dec 15, 2021
1 parent 26b22a5 commit 510e2a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ int main(int argc, char* argv[])
ds >> frameHeader.length;

if (verboseOutput)
qDebug() << "width =" << frameHeader.width << ", height =" << frameHeader.height << ", length =" << frameHeader.length;
qDebug() << "width =" << frameHeader.width << ", height =" << frameHeader.height << ", length =" << frameHeader.length << ", isFlipped =" << frameHeader.isFlipped;

std::vector<QRgb> pixels(frameHeader.width * frameHeader.height, transparentColor);
std::size_t pixI = 0;
Expand Down

0 comments on commit 510e2a4

Please sign in to comment.