mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-08 09:09:43 +00:00
Kernel/Graphics: Don't assert when disabling TextModeConsole
Not sure how it's useful to do so, let's not assert if something tries to disable it. If we will use TextModeConsole as a boot console, that console will be disabled after loading an appropriate console to replace it.
This commit is contained in:
parent
90a194377c
commit
278b0aa629
Notes:
sideshowbarker
2024-07-17 19:05:14 +09:00
Author: https://github.com/supercomputer7
Commit: 278b0aa629
Pull-request: https://github.com/SerenityOS/serenity/pull/12389
Reviewed-by: https://github.com/tomuta ✅
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ public:
|
|||
virtual void flush(size_t, size_t, size_t, size_t) override { }
|
||||
|
||||
virtual void enable() override { }
|
||||
virtual void disable() override { VERIFY_NOT_REACHED(); }
|
||||
virtual void disable() override { }
|
||||
|
||||
private:
|
||||
void clear_vga_row(u16 row);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue