| 1426 | } |
| 1427 | |
| 1428 | void DisableAllCheats() |
| 1429 | { |
| 1430 | if(FCEU_DisableAllCheats() && hCheat){ |
| 1431 | LVITEM lvi; |
| 1432 | lvi.mask = LVIF_STATE; |
| 1433 | lvi.stateMask = LVIS_STATEIMAGEMASK; |
| 1434 | lvi.state = INDEXTOSTATEIMAGEMASK(1); |
| 1435 | for (int current = SendDlgItemMessage(hCheat, IDC_LIST_CHEATS, LB_GETCOUNT, 0, 0) - 1; current >= 0; --current) |
| 1436 | SendDlgItemMessage(hCheat, IDC_LIST_CHEATS, LVM_GETITEMSTATE, current, (LPARAM)&lvi); |
| 1437 | UpdateCheatListGroupBoxUI(); |
| 1438 | } |
| 1439 | } |
| 1440 | |
| 1441 | void UpdateCheatRelatedWindow() |
| 1442 | { |
no test coverage detected