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
Notes: sideshowbarker 2024-07-19 12:36:04 +09:00

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