Changeset 28a5ebd in mainline for uspace/app/tetris
- Timestamp:
- 2020-06-18T15:39:50Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ce52c333
- Parents:
- 4f663f3e
- Location:
- uspace/app/tetris
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/tetris/scores.c
r4f663f3e r28a5ebd 154 154 if (kev->key == KC_BACKSPACE) { 155 155 if (i > 0) { 156 wchar_t uc;156 char32_t uc; 157 157 158 158 --i; -
uspace/app/tetris/screen.c
r4f663f3e r28a5ebd 371 371 */ 372 372 373 wchar_t c = 0;373 char32_t c = 0; 374 374 375 375 while (c == 0) { … … 393 393 int twait(void) 394 394 { 395 wchar_t c = 0;395 char32_t c = 0; 396 396 397 397 while (c == 0) {
Note:
See TracChangeset
for help on using the changeset viewer.
