Changeset 1abcf1d in mainline for uspace/app/tetris/tetris.c


Ignore:
Timestamp:
2018-04-10T19:43:21Z (7 years ago)
Author:
Jiří Zárevúcky <jiri.zarevucky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a69d42e
Parents:
9fa14d8d
Message:

puts() should append newline.

File:
1 edited

Legend:

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

    r9fa14d8d r1abcf1d  
    179179        clear_screen();
    180180        moveto(5, 10);
    181         puts("Tetris\n\n");
     181        puts("Tetris\n");
    182182
    183183        moveto(8, 10);
     
    194194        printf("In game controls:");
    195195        moveto(21, 0);
    196         puts(key_msg);
     196        printf("%s", key_msg);
    197197}
    198198
Note: See TracChangeset for help on using the changeset viewer.