Changeset eca2435 in mainline for uspace/srv/hid/console/gcons.c


Ignore:
Timestamp:
2010-01-06T20:52:16Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5eb5dcf, 985e26d2, a5603ff
Parents:
23efd30 (diff), 2ae1e6e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mouse fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/console/gcons.c

    r23efd30 reca2435  
    241241
    242242/** Return x, where left <= x <= right && |a-x| == min(|a-x|) is smallest */
    243 static inline int limit(size_t a, size_t left, size_t right)
     243static inline ssize_t limit(ssize_t a, ssize_t left, ssize_t right)
    244244{
    245245        if (a < left)
     
    261261        mouse_x = limit(mouse_x + dx, 0, xres);
    262262        mouse_y = limit(mouse_y + dy, 0, yres);
    263        
    264         async_msg_2(fbphone, FB_POINTER_MOVE, mouse_x, mouse_y);
     263
     264        if (active_console != KERNEL_CONSOLE)
     265                async_msg_2(fbphone, FB_POINTER_MOVE, mouse_x, mouse_y);
    265266}
    266267
Note: See TracChangeset for help on using the changeset viewer.