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 9672168f5..24ea3a967 100644 --- a/src/citra_qt/util/spinbox.cpp +++ b/src/citra_qt/util/spinbox.cpp | |||
| @@ -238,7 +238,7 @@ QValidator::State CSpinBox::validate(QString& input, int& pos) const | |||
| 238 | if (!prefix.isEmpty() && input.left(prefix.length()) != prefix) | 238 | if (!prefix.isEmpty() && input.left(prefix.length()) != prefix) |
| 239 | return QValidator::Invalid; | 239 | return QValidator::Invalid; |
| 240 | 240 | ||
| 241 | unsigned strpos = prefix.length(); | 241 | int strpos = prefix.length(); |
| 242 | 242 | ||
| 243 | // Empty "numbers" allowed as intermediate values | 243 | // Empty "numbers" allowed as intermediate values |
| 244 | if (strpos >= input.length() - HasSign() - suffix.length()) | 244 | if (strpos >= input.length() - HasSign() - suffix.length()) |