Changeset b7fd2a0 in mainline for uspace/app/tetris/screen.c
- Timestamp:
- 2018-01-13T03:10:29Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a53ed3a
- Parents:
- 36f0738
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified uspace/app/tetris/screen.c ¶
r36f0738 rb7fd2a0 138 138 winsize_t winsize; 139 139 140 static int get_display_size(winsize_t *ws)140 static errno_t get_display_size(winsize_t *ws) 141 141 { 142 142 return console_get_size(console, &ws->ws_col, &ws->ws_row); … … 146 146 { 147 147 sysarg_t ccap; 148 int rc = console_get_color_cap(console, &ccap);148 errno_t rc = console_get_color_cap(console, &ccap); 149 149 150 150 if (rc != 0)
Note:
See TracChangeset
for help on using the changeset viewer.