diff options
Diffstat (limited to 'src/devices/pic/base/pic.cpp')
-rw-r--r-- | src/devices/pic/base/pic.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/pic/base/pic.cpp b/src/devices/pic/base/pic.cpp index e9df77e..94267e2 100644 --- a/src/devices/pic/base/pic.cpp +++ b/src/devices/pic/base/pic.cpp @@ -235,7 +235,7 @@ bool Pic::Data::checkCalibration(const Device::Array &data, TQString *message) c Q_ASSERT( nbWords(MemoryRangeType::Cal)==data.count() ); for (uint i=0; i<data.count(); i++) { TQString address = toHexLabel(range(MemoryRangeType::Cal).start + i*addressIncrement(MemoryRangeType::Cal), nbCharsAddress()); - if ( data[i]==tqmask(MemoryRangeType::Cal) ) { + if ( data[i]==mask(MemoryRangeType::Cal) ) { if (message) *message = i18n("Calibration word at address %1 is blank.").tqarg(address); return false; } |