===========================================================================
| 7438 | |
| 7439 | //=========================================================================== |
| 7440 | Update_t CmdWatchDisable (int nArgs) |
| 7441 | { |
| 7442 | if (! g_nWatches) |
| 7443 | return ConsoleDisplayError("There are no watches defined."); |
| 7444 | |
| 7445 | if (!nArgs) |
| 7446 | return Help_Arg_1( CMD_WATCH_DISABLE ); |
| 7447 | |
| 7448 | _BWZ_EnableDisableViaArgs( nArgs, g_aWatches, MAX_WATCHES, false ); |
| 7449 | |
| 7450 | return UPDATE_WATCH; |
| 7451 | } |
| 7452 | |
| 7453 | //=========================================================================== |
| 7454 | Update_t CmdWatchEnable (int nArgs) |
nothing calls this directly
no test coverage detected