summaryrefslogtreecommitdiffstats
path: root/src/web_service/announce_room_json.h
diff options
context:
space:
mode:
authorFearlessTobi <thm.frey@gmail.com>2022-07-11 20:40:57 +0200
committerFearlessTobi <thm.frey@gmail.com>2022-07-25 21:59:30 +0200
commitec407bd3f1988c6f5d147307c662703c7bc94751 (patch)
tree8792652886c6b9250bea7e609b9828d9a94d3e31 /src/web_service/announce_room_json.h
parentweb_service: Fix -Wmissing-field-initializers (diff)
downloadyuzu-ec407bd3f1988c6f5d147307c662703c7bc94751.tar
yuzu-ec407bd3f1988c6f5d147307c662703c7bc94751.tar.gz
yuzu-ec407bd3f1988c6f5d147307c662703c7bc94751.tar.bz2
yuzu-ec407bd3f1988c6f5d147307c662703c7bc94751.tar.lz
yuzu-ec407bd3f1988c6f5d147307c662703c7bc94751.tar.xz
yuzu-ec407bd3f1988c6f5d147307c662703c7bc94751.tar.zst
yuzu-ec407bd3f1988c6f5d147307c662703c7bc94751.zip
Diffstat (limited to 'src/web_service/announce_room_json.h')
-rw-r--r--src/web_service/announce_room_json.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/web_service/announce_room_json.h b/src/web_service/announce_room_json.h
index ac02af5b1..f65c93214 100644
--- a/src/web_service/announce_room_json.h
+++ b/src/web_service/announce_room_json.h
@@ -17,8 +17,8 @@ namespace WebService {
*/
class RoomJson : public AnnounceMultiplayerRoom::Backend {
public:
- RoomJson(const std::string& host, const std::string& username, const std::string& token)
- : client(host, username, token), host(host), username(username), token(token) {}
+ RoomJson(const std::string& host_, const std::string& username_, const std::string& token_)
+ : client(host_, username_, token_), host(host_), username(username_), token(token_) {}
~RoomJson() = default;
void SetRoomInformation(const std::string& name, const std::string& description, const u16 port,
const u32 max_player, const u32 net_version, const bool has_password,