Changeset a3d2939 in mainline
- Timestamp:
- 2006-06-17T07:37:14Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e0bfcf8
- Parents:
- d3cd9774
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
console/console.c
rd3cd9774 ra3d2939 418 418 break; 419 419 case CONSOLE_FLUSH: 420 async_req_2(fb_info.phone, FB_FLUSH, 0, 0, NULL, NULL); 420 if (consnum == active_console) 421 async_req_2(fb_info.phone, FB_FLUSH, 0, 0, NULL, NULL); 421 422 break; 422 423 case CONSOLE_SET_STYLE: -
fb/fb.c
rd3cd9774 ra3d2939 831 831 832 832 static int pointer_x, pointer_y; 833 static int pointer_shown ;833 static int pointer_shown, pointer_enabled; 834 834 static int pointer_vport = -1; 835 835 static int pointer_pixmap = -1; … … 841 841 int color; 842 842 int bytepos; 843 844 if (pointer_shown || !pointer_enabled) 845 return; 843 846 844 847 /* Save image under the cursor */ … … 1061 1064 cursor_blink(vport); 1062 1065 anims_tick(); 1066 mouse_show(); 1063 1067 continue; 1064 1068 } … … 1199 1203 continue; 1200 1204 case FB_POINTER_MOVE: 1205 pointer_enabled = 1; 1201 1206 mouse_move(IPC_GET_ARG1(call), IPC_GET_ARG2(call)); 1202 1207 retval = 0;
Note:
See TracChangeset
for help on using the changeset viewer.