1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 04:28:13 +00:00

Kernel: Fix type, dectivate_writes => deactivate_writes

This commit is contained in:
Liav A 2021-05-21 06:53:31 +03:00 committed by Andreas Kling
parent db268efa69
commit 09d09b79b6
4 changed files with 4 additions and 4 deletions

View file

@ -143,7 +143,7 @@ void BochsGraphicsAdapter::enable_consoles()
auto registers = map_typed_writable<volatile BochsDisplayMMIORegisters>(m_mmio_registers);
registers->bochs_regs.y_offset = 0;
if (m_framebuffer_device)
m_framebuffer_device->dectivate_writes();
m_framebuffer_device->deactivate_writes();
m_framebuffer_console->enable();
}
void BochsGraphicsAdapter::disable_consoles()