1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 14:28:12 +00:00

Snazz up the kprintf() output a bit by giving it its own color.

This commit is contained in:
Andreas Kling 2018-10-31 20:10:39 +01:00
parent 9886b27d9c
commit dec5683e9c
10 changed files with 86 additions and 78 deletions

View file

@ -44,7 +44,7 @@ void VirtualConsole::switchTo(unsigned index)
{
if ((int)index == s_activeConsole)
return;
dbgprintf("[VC] Switch to %u (%p)\n", index, s_consoles[index]);
dbgprintf("VC: Switch to %u (%p)\n", index, s_consoles[index]);
ASSERT(index < 6);
ASSERT(s_consoles[index]);
InterruptDisabler disabler;
@ -387,7 +387,10 @@ void VirtualConsole::onKeyPress(byte ch)
void VirtualConsole::onConsoleReceive(byte ch)
{
auto old_attribute = m_currentAttribute;
m_currentAttribute = 0x03;
onChar(ch, false);
m_currentAttribute = old_attribute;
}
void VirtualConsole::onTTYWrite(byte ch)