diff --git a/Userland/Libraries/LibGfx/ImageFormats/ExifOrientedBitmap.h b/Userland/Libraries/LibGfx/ImageFormats/ExifOrientedBitmap.h index 9b21956ea1..c4d5f8ed93 100644 --- a/Userland/Libraries/LibGfx/ImageFormats/ExifOrientedBitmap.h +++ b/Userland/Libraries/LibGfx/ImageFormats/ExifOrientedBitmap.h @@ -23,7 +23,7 @@ public: void set_pixel(u32 x, u32 y, Color color) { auto const new_position = oriented_position(IntPoint(x, y)); - m_bitmap->set_pixel(new_position, color); + m_bitmap->scanline(new_position.y())[new_position.x()] = color.value(); } NonnullRefPtr& bitmap()