update main #1

Merged
Sinipelto merged 240 commits from Bananymous/banan-os:main into main 2023-11-20 13:20:51 +02:00
1 changed files with 5 additions and 1 deletions
Showing only changes of commit 3daf3d53a3 - Show all commits

View File

@ -57,7 +57,11 @@ namespace Kernel
auto& driver = s_serial_drivers[i];
driver.m_port = s_serial_ports[i];
if (!driver.initialize_size())
continue;
{
// if size detection fails, just use some random size
driver.m_width = 999;
driver.m_height = 999;
}
count++;
}
}