1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:47:34 +00:00

Kernel/Graphics: Rename m_vga_region => m_vga_window_region

This commit is contained in:
Liav A 2022-07-13 20:14:42 +03:00 committed by Linus Groh
parent 00dbd667d5
commit f052b9574c
2 changed files with 3 additions and 3 deletions

View file

@ -40,7 +40,7 @@ private:
mutable Spinlock m_vga_lock;
NonnullOwnPtr<Memory::Region> m_vga_region;
NonnullOwnPtr<Memory::Region> m_vga_window_region;
VirtualAddress m_current_vga_window;
};