MCPcopy Create free account
hub / github.com/TASEmulators/fceux / FCEUI_SetCheatMapByte

Function FCEUI_SetCheatMapByte

src/cheat.cpp:911–914  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 2

RebuildSubCheatsFunction · 0.85
FCEUI_RefreshCheatMapFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected