Changeset 59ed572 in mainline
- Timestamp:
- 2006-06-02T22:23:41Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0bf84cc
- Parents:
- 86029498
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
console/console.c
r86029498 r59ed572 313 313 arg1 = IPC_GET_ARG1(call); 314 314 arg2 = IPC_GET_ARG2(call); 315 screenbuffer_set_style(&(connections[consnum] ),arg1, arg2);315 screenbuffer_set_style(&(connections[consnum].screenbuffer),arg1, arg2); 316 316 if (consnum == active_console) 317 317 nsend_call_2(fb_info.phone, FB_SET_STYLE, arg1, arg2); -
tetris/input.c
r86029498 r59ed572 90 90 struct timeval starttv, endtv, *s; 91 91 static ipc_call_t charcall; 92 i nt rc;92 ipcarg_t rc; 93 93 94 94 /* -
tetris/screen.c
r86029498 r59ed572 70 70 * simply literal strings); 71 71 */ 72 #define putstr(s) puts(s) 72 static inline void putstr(char *s) 73 { 74 while (*s) 75 putchar(*(s++)); 76 } 73 77 74 78 static int con_phone;
Note:
See TracChangeset
for help on using the changeset viewer.