diff options
| author | 2021-01-10 19:52:21 -0600 | |
|---|---|---|
| committer | 2021-01-13 11:02:28 -0600 | |
| commit | 06cf705501a6b8ea86aaaca46728e202eb088e94 (patch) | |
| tree | ed4749195a57ee37331fd26458198c6dfd1eb7ae /src | |
| parent | Merge pull request #5312 from german77/overclockenabled (diff) | |
| download | yuzu-06cf705501a6b8ea86aaaca46728e202eb088e94.tar.gz yuzu-06cf705501a6b8ea86aaaca46728e202eb088e94.tar.xz yuzu-06cf705501a6b8ea86aaaca46728e202eb088e94.zip | |
Fix IP validator error where the last octet produced an error if the value was higher than 199
Diffstat (limited to 'src')
| -rw-r--r-- | src/yuzu/configuration/configure_motion_touch.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/yuzu/configuration/configure_motion_touch.cpp b/src/yuzu/configuration/configure_motion_touch.cpp index eb8eacbf9..9543f086d 100644 --- a/src/yuzu/configuration/configure_motion_touch.cpp +++ b/src/yuzu/configuration/configure_motion_touch.cpp | |||
| @@ -185,8 +185,9 @@ void ConfigureMotionTouch::ConnectEvents() { | |||
| 185 | } | 185 | } |
| 186 | 186 | ||
| 187 | void ConfigureMotionTouch::OnUDPAddServer() { | 187 | void ConfigureMotionTouch::OnUDPAddServer() { |
| 188 | QRegExp re(tr(R"re(^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4]" | 188 | // Validator for IP address |
| 189 | "[0-9]|[01]?[0-9][0-9]?)$)re")); // a valid ip address | 189 | QRegExp re(QStringLiteral( |
| 190 | R"re(^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$)re")); | ||
| 190 | bool ok; | 191 | bool ok; |
| 191 | QString port_text = ui->udp_port->text(); | 192 | QString port_text = ui->udp_port->text(); |
| 192 | QString server_text = ui->udp_server->text(); | 193 | QString server_text = ui->udp_server->text(); |