mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-28 18:44:24 +00:00
Base: Rename /dev/psaux to /dev/mouse
Since this device doesn't actually hand out raw PS/2 aux packets, let's just call it "mouse" instead. :^)
This commit is contained in:
@@ -52,7 +52,7 @@ EventLoop::EventLoop()
|
||||
: m_server(Core::LocalServer::construct())
|
||||
{
|
||||
m_keyboard_fd = open("/dev/keyboard", O_RDONLY | O_NONBLOCK | O_CLOEXEC);
|
||||
m_mouse_fd = open("/dev/psaux", O_RDONLY | O_NONBLOCK | O_CLOEXEC);
|
||||
m_mouse_fd = open("/dev/mouse", O_RDONLY | O_NONBLOCK | O_CLOEXEC);
|
||||
|
||||
bool ok = m_server->take_over_from_system_server();
|
||||
ASSERT(ok);
|
||||
|
||||
Reference in New Issue
Block a user