1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:17:44 +00:00

WindowServer: Oops, remove an assertion that won't fly with MBVGA

This commit is contained in:
Andreas Kling 2019-08-19 13:50:09 +02:00
parent 7038935f74
commit 770cf498ca

View file

@ -65,8 +65,6 @@ void WSCompositor::init_bitmaps()
m_front_bitmap = GraphicsBitmap::create_wrapper(GraphicsBitmap::Format::RGB32, size, screen.pitch(), screen.scanline(0));
ASSERT(m_screen_can_set_buffer);
if (m_screen_can_set_buffer)
m_back_bitmap = GraphicsBitmap::create_wrapper(GraphicsBitmap::Format::RGB32, size, screen.pitch(), screen.scanline(size.height()));
else