diff options
author | FearlessTobi <thm.frey@gmail.com> | 2022-08-01 22:47:39 +0200 |
---|---|---|
committer | FearlessTobi <thm.frey@gmail.com> | 2022-08-15 20:25:42 +0200 |
commit | 6d41088153b4b932b4f2524d4252993a5642f998 (patch) | |
tree | 39ea8d5749f2a5bf9216b885780617e7f41c2a7e /src/yuzu/multiplayer/validation.h | |
parent | a5cd639cb627013c22d14331bd0e91228ac44e84 (diff) |
core, yuzu: Address first part of review comments
Diffstat (limited to 'src/yuzu/multiplayer/validation.h')
-rw-r--r-- | src/yuzu/multiplayer/validation.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/multiplayer/validation.h b/src/yuzu/multiplayer/validation.h index 7d48e589d..dabf860be 100644 --- a/src/yuzu/multiplayer/validation.h +++ b/src/yuzu/multiplayer/validation.h @@ -10,7 +10,7 @@ class Validation { public: Validation() - : room_name(room_name_regex), nickname(nickname_regex), ip(ip_regex), port(0, 65535) {} + : room_name(room_name_regex), nickname(nickname_regex), ip(ip_regex), port(0, UINT16_MAX) {} ~Validation() = default; |