mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-10 01:51:03 +09:00
Remove logspam in /dev/{full,null,zero} now that they work just fine.
Also don't echo anything to console when putch'ing '\0'.
This commit is contained in:
parent
6312c3f253
commit
546ddd7de0
Notes:
sideshowbarker
2024-07-19 18:38:29 +09:00
Author: https://github.com/awesomekling
Commit: 546ddd7de0
5 changed files with 2 additions and 3 deletions
|
@ -40,6 +40,8 @@ void Console::putChar(char ch)
|
|||
IO::out8(0xe9, ch);
|
||||
#endif
|
||||
switch (ch) {
|
||||
case '\0':
|
||||
return;
|
||||
case '\n':
|
||||
m_cursorColumn = 0;
|
||||
if (m_cursorRow == (m_rows - 1)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue