Skip to content

Commit

Permalink
[共通] fix #1169
Browse files Browse the repository at this point in the history
  • Loading branch information
Reputeless committed Jan 17, 2024
1 parent 99e3a4a commit 6c56465
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Siv3D/addon/Multiplayer_Photon/Multiplayer_Photon.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -436,6 +436,11 @@ namespace s3d
{
m_context.leaveRoomReturn(errorCode, detail::ToString(errorString));
}

void joinRoomReturn(const int playerID, [[maybe_unused]] const ExitGames::Common::Hashtable& roomProperties, [[maybe_unused]] const ExitGames::Common::Hashtable& playerProperties, const int errorCode, const ExitGames::Common::JString& errorString) override
{
m_context.joinRoomReturn(playerID, errorCode, detail::ToString(errorString));
}

void joinRandomRoomReturn(const int playerID, [[maybe_unused]] const ExitGames::Common::Hashtable& roomProperties, [[maybe_unused]] const ExitGames::Common::Hashtable& playerProperties, const int errorCode, const ExitGames::Common::JString& errorString) override
{
Expand Down

0 comments on commit 6c56465

Please sign in to comment.