mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 18:37:35 +00:00
Kernel: Fix logic typo in ConsoleManagement::is_initialized()
Regressed in 2ff3c54153
.
This commit is contained in:
parent
aaf232f903
commit
cebdb0b575
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ bool ConsoleManagement::is_initialized()
|
|||
return false;
|
||||
if (s_the->m_consoles.is_empty())
|
||||
return false;
|
||||
if (s_the->m_active_console)
|
||||
if (!s_the->m_active_console)
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue