mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 11:26:11 +00:00
Fix a strange comparison
This commit is contained in:
parent
fc3f072ed7
commit
206fee601b
@ -726,7 +726,7 @@ void HexWidget::w_increaseDecrease()
|
|||||||
}
|
}
|
||||||
int64_t value = (int64_t)d.getValue();
|
int64_t value = (int64_t)d.getValue();
|
||||||
uint8_t sz = d.getNBytes();
|
uint8_t sz = d.getNBytes();
|
||||||
if (!d.getMode() == IncrementDecrementDialog::Increase) {
|
if (d.getMode() == IncrementDecrementDialog::Decrease) {
|
||||||
value *= -1;
|
value *= -1;
|
||||||
}
|
}
|
||||||
RzCoreLocked core(Core());
|
RzCoreLocked core(Core());
|
||||||
|
Loading…
Reference in New Issue
Block a user