mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
Kernel: Fix typo in the FramebufferGetPitchMboxMessage name
This commit is contained in:
@@ -37,7 +37,7 @@ Framebuffer::Framebuffer()
|
|||||||
FramebufferSetDepthMboxMessage set_depth;
|
FramebufferSetDepthMboxMessage set_depth;
|
||||||
FramebufferSetPixelOrderMboxMessage set_pixel_order;
|
FramebufferSetPixelOrderMboxMessage set_pixel_order;
|
||||||
FramebufferAllocateBufferMboxMessage allocate_buffer;
|
FramebufferAllocateBufferMboxMessage allocate_buffer;
|
||||||
FramebufferGetPithMboxMessage get_pitch;
|
FramebufferGetPitchMboxMessage get_pitch;
|
||||||
Mailbox::MessageTail tail;
|
Mailbox::MessageTail tail;
|
||||||
} message_queue;
|
} message_queue;
|
||||||
|
|
||||||
|
|||||||
@@ -98,16 +98,16 @@ public:
|
|||||||
};
|
};
|
||||||
static_assert(sizeof(FramebufferAllocateBufferMboxMessage) == 20);
|
static_assert(sizeof(FramebufferAllocateBufferMboxMessage) == 20);
|
||||||
|
|
||||||
class FramebufferGetPithMboxMessage : public Mailbox::Message {
|
class FramebufferGetPitchMboxMessage : public Mailbox::Message {
|
||||||
public:
|
public:
|
||||||
u32 pitch;
|
u32 pitch;
|
||||||
|
|
||||||
FramebufferGetPithMboxMessage()
|
FramebufferGetPitchMboxMessage()
|
||||||
: Mailbox::Message(0x40008, 4)
|
: Mailbox::Message(0x40008, 4)
|
||||||
{
|
{
|
||||||
pitch = 0;
|
pitch = 0;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
static_assert(sizeof(FramebufferGetPithMboxMessage) == 16);
|
static_assert(sizeof(FramebufferGetPitchMboxMessage) == 16);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user