diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-03-21 05:24:42 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-03-21 05:25:54 +0100 |
commit | 65348e7dc1ef546a86cffa9b1b8045d2ba841521 (patch) | |
tree | aa8c7b26963228cd96b692b0bb798c7cce498cf4 /SharedGraphics/Size.h | |
parent | 42755e98cf2ce7d10f1899051b63513d442f92ec (diff) | |
download | serenity-65348e7dc1ef546a86cffa9b1b8045d2ba841521.zip |
PNGLoader: Support for color type 2 (RGB triplets) and multiple IDAT chunks.
Diffstat (limited to 'SharedGraphics/Size.h')
-rw-r--r-- | SharedGraphics/Size.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SharedGraphics/Size.h b/SharedGraphics/Size.h index 469bb7aaf9..77638cca2f 100644 --- a/SharedGraphics/Size.h +++ b/SharedGraphics/Size.h @@ -48,7 +48,7 @@ public: operator WSAPI_Size() const; - String to_string() const { return String::format("[%d,%d]", m_width, m_height); } + String to_string() const { return String::format("[%dx%d]", m_width, m_height); } private: int m_width { 0 }; |