| 209 | } |
| 210 | |
| 211 | void KeyboardSetBackgroundAccessBit(int bit) |
| 212 | { |
| 213 | background |= (1<<bit); |
| 214 | UpdateBackgroundAccess(background != 0); |
| 215 | } |
| 216 | void KeyboardClearBackgroundAccessBit(int bit) |
| 217 | { |
| 218 | background &= ~(1<<bit); |
no test coverage detected