Changeset ba2a055 in mainline
- Timestamp:
- 2009-06-10T21:59:58Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 92d34f0b
- Parents:
- fc02cc41
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fb/ega.c
rfc02cc41 rba2a055 150 150 scr_addr[(row * scr_width + col) * 2 + 1] = style; 151 151 152 cursor_goto( row, col + 1);152 cursor_goto(col + 1, row); 153 153 } 154 154 … … 317 317 break; 318 318 case FB_GET_CSIZE: 319 ipc_answer_2(callid, EOK, scr_ height, scr_width);319 ipc_answer_2(callid, EOK, scr_width, scr_height); 320 320 continue; 321 321 case FB_CLEAR:
Note:
See TracChangeset
for help on using the changeset viewer.