mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 02:27:43 +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;
|
return false;
|
||||||
if (s_the->m_consoles.is_empty())
|
if (s_the->m_consoles.is_empty())
|
||||||
return false;
|
return false;
|
||||||
if (s_the->m_active_console)
|
if (!s_the->m_active_console)
|
||||||
return false;
|
return false;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue