1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:57:35 +00:00

MBVGADevice: Log address/pitch/width/height when created

This commit is contained in:
Andreas Kling 2019-09-30 15:04:16 +02:00
parent 8e775d241e
commit c5e057438c

View file

@ -19,6 +19,7 @@ MBVGADevice::MBVGADevice(PhysicalAddress addr, int pitch, int width, int height)
, m_framebuffer_width(width)
, m_framebuffer_height(height)
{
dbg() << "MBVGADevice address=" << addr << ", pitch=" << pitch << ", width=" << width << ", height=" << height;
s_the = this;
}