Changeset bba6b09 in mainline
- Timestamp:
- 2006-06-06T23:40:30Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ec5beb7d
- Parents:
- 7284260
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
fb/sysio.c
r7284260 rbba6b09 150 150 fgcolor = IPC_GET_ARG1(call); 151 151 bgcolor = IPC_GET_ARG2(call); 152 if (bgcolor == 0xf0f0f0) 153 set_style(0); 154 else if (fgcolor > bgcolor) 152 if (fgcolor < bgcolor) 155 153 set_style(0); 156 154 else -
tetris/screen.c
r7284260 rbba6b09 86 86 static void start_standout(void) 87 87 { 88 set_style(0 , 0xe0e0e0);88 set_style(0xf0f0f0, 0); 89 89 } 90 90 91 91 static void resume_normal(void) 92 92 { 93 set_style(0 xe0e0e0,0);93 set_style(0, 0xf0f0f0); 94 94 } 95 95
Note:
See TracChangeset
for help on using the changeset viewer.