diff options
| author | FearlessTobi <thm.frey@gmail.com> | 2022-07-11 20:40:57 +0200 |
|---|---|---|
| committer | FearlessTobi <thm.frey@gmail.com> | 2022-07-25 21:59:30 +0200 |
| commit | ec407bd3f1988c6f5d147307c662703c7bc94751 (patch) | |
| tree | 8792652886c6b9250bea7e609b9828d9a94d3e31 /src/yuzu/multiplayer/state.cpp | |
| parent | ee5cb9c7b9a5416ae30cdf1e7ecb492ae9b75fc9 (diff) | |
Fix compilation on linux gcc
Diffstat (limited to 'src/yuzu/multiplayer/state.cpp')
| -rw-r--r-- | src/yuzu/multiplayer/state.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/yuzu/multiplayer/state.cpp b/src/yuzu/multiplayer/state.cpp index b2aaed982..e96b03e5d 100644 --- a/src/yuzu/multiplayer/state.cpp +++ b/src/yuzu/multiplayer/state.cpp @@ -19,10 +19,10 @@ #include "yuzu/uisettings.h" #include "yuzu/util/clickable_label.h" -MultiplayerState::MultiplayerState(QWidget* parent, QStandardItemModel* game_list_model, - QAction* leave_room, QAction* show_room) - : QWidget(parent), game_list_model(game_list_model), leave_room(leave_room), - show_room(show_room) { +MultiplayerState::MultiplayerState(QWidget* parent, QStandardItemModel* game_list_model_, + QAction* leave_room_, QAction* show_room_) + : QWidget(parent), game_list_model(game_list_model_), leave_room(leave_room_), + show_room(show_room_) { if (auto member = Network::GetRoomMember().lock()) { // register the network structs to use in slots and signals state_callback_handle = member->BindOnStateChanged( |
