diff options
author | bd <bdunahu@operationnull.com> | 2025-04-26 14:29:48 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-04-26 14:29:48 -0400 |
commit | 1c174cc103cb1b00befed6e52b40bb3e76cc7797 (patch) | |
tree | e330ba0b693b6aad6d361883b6e35986ee48971d /gui/digitlabel.h | |
parent | 94c0d7b5045244f20dfa13f7d31e0e06901908c2 (diff) |
Use two's complement in number display
Diffstat (limited to 'gui/digitlabel.h')
-rw-r--r-- | gui/digitlabel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/digitlabel.h b/gui/digitlabel.h index 68b01cb..bffdd0a 100644 --- a/gui/digitlabel.h +++ b/gui/digitlabel.h @@ -59,7 +59,7 @@ class DigitLabel : public QLabel /** * If this digit should display in hexidecinmal. */ - int is_hex; + int is_hex = true; /** * If this digit should not display. */ |