| 1300 | extern int globalCheatDisabled; |
| 1301 | extern unsigned int FrozenAddressCount; |
| 1302 | static void ToggleCheats() |
| 1303 | { |
| 1304 | FCEUI_GlobalToggleCheat(globalCheatDisabled); |
| 1305 | FCEU_DispMessage("%d cheats active", 0, FrozenAddressCount); |
| 1306 | #ifdef __WIN_DRIVER__ |
| 1307 | UpdateCheatRelatedWindow(); |
| 1308 | UpdateCheatListGroupBoxUI(); |
| 1309 | #endif |
| 1310 | } |
| 1311 | |
| 1312 | static void DebuggerStepInto() |
| 1313 | { |
nothing calls this directly
no test coverage detected