Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/tetris/screen.c

    rf538ef3 ra53ed3a  
    138138winsize_t winsize;
    139139
    140 static int get_display_size(winsize_t *ws)
     140static errno_t get_display_size(winsize_t *ws)
    141141{
    142142        return console_get_size(console, &ws->ws_col, &ws->ws_row);
     
    146146{
    147147        sysarg_t ccap;
    148         int rc = console_get_color_cap(console, &ccap);
    149        
    150         if (rc != 0)
     148        errno_t rc = console_get_color_cap(console, &ccap);
     149       
     150        if (rc != EOK)
    151151                return false;
    152152       
Note: See TracChangeset for help on using the changeset viewer.