diff options
Diffstat (limited to 'src/citra_qt/util/spinbox.cpp')
| -rw-r--r-- | src/citra_qt/util/spinbox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/citra_qt/util/spinbox.cpp b/src/citra_qt/util/spinbox.cpp index 80dc67d7d..9672168f5 100644 --- a/src/citra_qt/util/spinbox.cpp +++ b/src/citra_qt/util/spinbox.cpp | |||
| @@ -244,7 +244,7 @@ QValidator::State CSpinBox::validate(QString& input, int& pos) const | |||
| 244 | if (strpos >= input.length() - HasSign() - suffix.length()) | 244 | if (strpos >= input.length() - HasSign() - suffix.length()) |
| 245 | return QValidator::Intermediate; | 245 | return QValidator::Intermediate; |
| 246 | 246 | ||
| 247 | _dbg_assert_(GUI, base <= 10 || base == 16); | 247 | _dbg_assert_(Frontend, base <= 10 || base == 16); |
| 248 | QString regexp; | 248 | QString regexp; |
| 249 | 249 | ||
| 250 | // Demand sign character for negative ranges | 250 | // Demand sign character for negative ranges |