GRAPHICS: Include bytesPerPixel in toString representation

This commit is contained in:
Vincent Pelletier 2017-04-30 01:58:30 +00:00 committed by Eugene Sandulenko
parent 7d8cff0231
commit 57eda6aef0

View file

@ -58,7 +58,7 @@ Common::String PixelFormat::toString() const {
digits += '0' + 8 - componentLoss;
}
return letters + digits;
return letters + digits + '@' + ('0' + bytesPerPixel);
}
} // End of namespace Graphics