mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:18:11 +00:00
VirtualConsole: Use dbg() instead of dbgprintf()
This commit is contained in:
parent
309593d5bd
commit
8a22e93ebb
1 changed files with 1 additions and 1 deletions
|
@ -129,7 +129,7 @@ void VirtualConsole::switch_to(unsigned index)
|
|||
return;
|
||||
active_console->set_active(false);
|
||||
}
|
||||
dbgprintf("VC: Switch to %u (%p)\n", index, s_consoles[index]);
|
||||
dbg() << "VC: Switch to " << index << " (" << s_consoles[index] << ")";
|
||||
s_active_console = index;
|
||||
s_consoles[s_active_console]->set_active(true);
|
||||
Console::the().set_implementation(s_consoles[s_active_console]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue