diff --git a/kernel/src/fs/devices/ConsoleDevice.cpp b/kernel/src/fs/devices/ConsoleDevice.cpp index b2c78411..de11aa67 100644 --- a/kernel/src/fs/devices/ConsoleDevice.cpp +++ b/kernel/src/fs/devices/ConsoleDevice.cpp @@ -63,7 +63,7 @@ Result ConsoleDevice::write(const u8* buf, usize, usize length) { if (m_settings.c_lflag & TOSTOP) TRY(handle_background_process_group(true, SIGTTOU)); - // if (s_is_in_graphical_mode) return length; + if (s_is_in_graphical_mode) return length; TextConsole::write((const char*)buf, length); return length;