| 909 | } |
| 910 | |
| 911 | void FCEUI_SetCheatMapByte(uint16 address, bool cheat) |
| 912 | { |
| 913 | cheat ? cheatMap[address / 8] |= (1 << address % 8) : cheatMap[address / 8] ^= (1 << address % 8); |
| 914 | } |
| 915 | |
| 916 | void FCEUI_CreateCheatMap(void) |
| 917 | { |
no outgoing calls
no test coverage detected