| 196 | } |
| 197 | template <typename T> |
| 198 | void update_cmd_handler(ACE_scanner<T> *scanner, |
| 199 | const cheat_mode_config *cheat_config) { |
| 200 | if (!cheat_config->initial_scan_done) { |
| 201 | frontend_print("WARN: No initial scan is done\n"); |
| 202 | return; |
| 203 | } |
| 204 | scanner->update_current_scan_result(); |
| 205 | frontend_print("Done updating value!\n"); |
| 206 | } |
| 207 | |
| 208 | template <typename T> |
| 209 | void endian_cmd_handler(ACE_scanner<T> *scanner, |
nothing calls this directly
no test coverage detected