Changeset 11646 for trunk/FACT++
- Timestamp:
- 07/27/11 10:17:59 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/gui/FactGui.h
r11643 r11646 2764 2764 { 2765 2765 const uint16_t isw = fThresholdIdx->value(); 2766 const uint16_t ihw = fPatchMapHW[isw];2766 const uint16_t ihw = isw<0 ? -1 : fPatchMapHW[isw]; 2767 2767 2768 2768 Dim::SendCommand("FTM_CONTROL/DISABLE_ALL_PATCHES_EXCEPT", ihw); … … 2774 2774 2775 2775 const int32_t isw = fThresholdIdx->value(); 2776 const int32_t ihw = fPatchMapHW[isw];2776 const int32_t ihw = isw<0 ? -1 : fPatchMapHW[isw]; 2777 2777 2778 2778 const int32_t d[2] = { ihw, v };
Note:
See TracChangeset
for help on using the changeset viewer.