Changeset 1abcf1d in mainline for uspace/app/tetris
- Timestamp:
- 2018-04-10T19:43:21Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a69d42e
- Parents:
- 9fa14d8d
- Location:
- uspace/app/tetris
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/tetris/scores.c
r9fa14d8d r1abcf1d 128 128 clear_screen(); 129 129 moveto(10, 10); 130 puts("Insert your name: ");130 fputs("Insert your name: ", stdout); 131 131 str_cpy(scores[NUMSPOTS - 1].hs_name, STR_BOUNDS(MAXLOGNAME) + 1, 132 132 "Player"); -
uspace/app/tetris/tetris.c
r9fa14d8d r1abcf1d 179 179 clear_screen(); 180 180 moveto(5, 10); 181 puts("Tetris\n \n");181 puts("Tetris\n"); 182 182 183 183 moveto(8, 10); … … 194 194 printf("In game controls:"); 195 195 moveto(21, 0); 196 p uts(key_msg);196 printf("%s", key_msg); 197 197 } 198 198
Note:
See TracChangeset
for help on using the changeset viewer.
