From 1805dd5ffe3f849a2bbd6426148a4a536973f616 Mon Sep 17 00:00:00 2001 From: Kevin Lange Date: Sun, 30 Oct 2011 19:15:32 -0500 Subject: [PATCH] [mouse] Start mouse at center of screen --- kernel/core/mouse.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel/core/mouse.c b/kernel/core/mouse.c index 4f11d0d0..d8fe2f62 100644 --- a/kernel/core/mouse.c +++ b/kernel/core/mouse.c @@ -5,8 +5,8 @@ int8_t mouse_byte[3]; int8_t mouse_x = 0; int8_t mouse_y = 0; -int32_t actual_x = 0; -int32_t actual_y = 0; +int32_t actual_x = 5120; +int32_t actual_y = 3835; void mouse_handler(struct regs *r) { switch (mouse_cycle) {