Ignore:
File:
1 edited

Legend:

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

    ra63966d r899bdfd  
    202202        while (true) {
    203203                int i = getchar();
     204                if (i < 0)
     205                        return 0;
    204206
    205207                switch (i) {
     
    328330
    329331                while (true) {
     332                        if (size_changed) {
     333                                size_changed = false;
     334                                scr_set();
     335                                scr_msg(key_msg, 1);
     336                        }
     337
    330338                        place(curshape, pos, 1);
    331339                        scr_update();
Note: See TracChangeset for help on using the changeset viewer.