diff options
author | Liav A <liavalb@gmail.com> | 2022-04-30 14:35:22 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-05-05 20:55:57 +0200 |
commit | f15b93c9a1b32a362d40448c52dfd3e838aced68 (patch) | |
tree | dcccd8499998b57ad80886a077317da46c59b43e /Kernel/Graphics/Console | |
parent | c27c414ed1728a16b7ee3c1ebf1353127a700569 (diff) | |
download | serenity-f15b93c9a1b32a362d40448c52dfd3e838aced68.zip |
Kernel/Graphics: Use DisplayConnector design with generic framebuffers
Diffstat (limited to 'Kernel/Graphics/Console')
-rw-r--r-- | Kernel/Graphics/Console/VGAConsole.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Graphics/Console/VGAConsole.h b/Kernel/Graphics/Console/VGAConsole.h index f9ff5a2438..0b297163e9 100644 --- a/Kernel/Graphics/Console/VGAConsole.h +++ b/Kernel/Graphics/Console/VGAConsole.h @@ -9,7 +9,7 @@ #include <AK/RefCounted.h> #include <AK/Types.h> #include <Kernel/Graphics/Console/Console.h> -#include <Kernel/Graphics/VGACompatibleAdapter.h> +#include <Kernel/Graphics/VGA/VGACompatibleAdapter.h> namespace Kernel::Graphics { class VGAConsole : public Console { |