diff --git a/Asuro.iso b/Asuro.iso index 088a712c..d13bb9ee 100644 Binary files a/Asuro.iso and b/Asuro.iso differ diff --git a/bin/kernel.bin b/bin/kernel.bin index 459d5475..19c8395c 100755 Binary files a/bin/kernel.bin and b/bin/kernel.bin differ diff --git a/iso/boot/asuro.bin b/iso/boot/asuro.bin index 459d5475..19c8395c 100755 Binary files a/iso/boot/asuro.bin and b/iso/boot/asuro.bin differ diff --git a/lib/libpconsole.a b/lib/libpconsole.a index 22900fed..c3c8a690 100644 Binary files a/lib/libpconsole.a and b/lib/libpconsole.a differ diff --git a/lib/libpmultiboot.a b/lib/libpmultiboot.a index 98fc4e1c..5e3f08fd 100644 Binary files a/lib/libpmultiboot.a and b/lib/libpmultiboot.a differ diff --git a/lib/libpsystem.a b/lib/libpsystem.a index 2e4049c7..a742783a 100644 Binary files a/lib/libpsystem.a and b/lib/libpsystem.a differ diff --git a/lib/mouse.ppu b/lib/mouse.ppu index e12a89c4..379be4bb 100644 Binary files a/lib/mouse.ppu and b/lib/mouse.ppu differ diff --git a/src/driver/hid/mouse.pas b/src/driver/hid/mouse.pas index 071977a3..3b28ad82 100644 --- a/src/driver/hid/mouse.pas +++ b/src/driver/hid/mouse.pas @@ -65,11 +65,6 @@ begin if not NeedsRedraw then exit; NeedsRedraw:= false; if not FirstDraw then begin - {for y:=0 to 1 do begin - for x:=0 to 1 do begin - DrawPixel(Last.x + x, Last.y + y, BackPixels[x][y]); - end; - end;} for y:=0 to 7 do begin for x:=0 to 1 do begin drawPixel64(Last.x + (x * 4), Last.y + y, BackPixels[x][y]); @@ -78,12 +73,6 @@ begin end; Last.x:= nx; Last.y:= ny; - {for y:=0 to 1 do begin - for x:=0 to 1 do begin - BackPixels[x][y]:= GetPixel(nx + x, ny + y); - DrawPixel(nx + x, ny + y, $FFFF); - end; - end;} for y:=0 to 7 do begin for x:=0 to 1 do begin BackPixels[x][y]:= GetPixel64(nx + (x * 4), ny + y); @@ -162,8 +151,8 @@ begin Current.y:= Current.y - Packet.y_movement; if Current.x < 0 then Current.x:= 0; if Current.y < 0 then Current.y:= 0; - if Current.x > 1279 then Current.x:= 1279; - if Current.y > 1023 then Current.y:= 1023; + if Current.x > 1272 then Current.x:= 1272; + if Current.y > 1015 then Current.y:= 1015; end; Cycle:= 0; NeedsRedraw:= true;