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


Ignore:
Timestamp:
2010-08-29T19:27:57Z (14 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5b8b66c
Parents:
df908b3
Message:

Do not send FB_POINTER_MOVE messages before gcons is initialized.

File:
1 edited

Legend:

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

    rdf908b3 recd2775  
    286286        ssize_t nx = (ssize_t) mouse_x + dx;
    287287        ssize_t ny = (ssize_t) mouse_y + dy;
     288
     289        if (!use_gcons)
     290                return;
    288291       
    289292        mouse_x = (size_t) limit(nx, 0, xres);
Note: See TracChangeset for help on using the changeset viewer.