Changes in uspace/srv/hid/fb/fb.c [369a5f8:5b8b66c] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/fb/fb.c

    r369a5f8 r5b8b66c  
    13471347{
    13481348        mouse_hide();
    1349         pointer_x = x;
    1350         pointer_y = y;
     1349        pointer_x = x % screen.xres;
     1350        pointer_y = y % screen.yres;
    13511351        mouse_show();
    13521352}
Note: See TracChangeset for help on using the changeset viewer.