| 698 | |
| 699 | |
| 700 | int32 FCEUI_CheatSearchGetCount(void) |
| 701 | { |
| 702 | uint32 x,c=0; |
| 703 | |
| 704 | if(CheatComp) |
| 705 | { |
| 706 | for(x=0x0000;x<0x10000;x++) |
| 707 | if(!(CheatComp[x]&CHEATC_NOSHOW) && CheatRPtrs[x>>10]) |
| 708 | c++; |
| 709 | } |
| 710 | |
| 711 | return c; |
| 712 | } |
| 713 | /* This function will give the initial value of the search and the current value at a location. */ |
| 714 | |
| 715 | void FCEUI_CheatSearchGet(int (*callb)(uint32 a, uint8 last, uint8 current, void *data),void *data) |
no outgoing calls
no test coverage detected