1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 04:57:44 +00:00

Everywhere: Fix spelling of "offsetted"

This word is actually pretty awkward in context, but this patch merely
fixes the spelling instead of finding a better word.
This commit is contained in:
Andreas Kling 2021-11-20 17:10:57 +01:00
parent daef7e2c71
commit 9387271049
10 changed files with 33 additions and 33 deletions

View file

@ -395,7 +395,7 @@ void Screen::set_buffer(int index)
FBHeadVerticalOffset offset;
memset(&offset, 0, sizeof(FBHeadVerticalOffset));
if (index == 1)
offset.offseted = 1;
offset.offsetted = 1;
int rc = fb_set_head_vertical_offset_buffer(m_framebuffer_fd, &offset);
VERIFY(rc == 0);
}