mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-26 12:16:20 +00:00
fix compile errors
This commit is contained in:
parent
891ce2e5ad
commit
6658cf8a2f
1 changed files with 2 additions and 2 deletions
|
@ -1889,7 +1889,7 @@ void CEXISlippi::prepareOnlineMatchState()
|
|||
m_read_queue.insert(m_read_queue.end(), oppName.begin(), oppName.end());
|
||||
|
||||
// Add error message if there is one
|
||||
auto errorStr = auto errorStr = !forcedError.empty() ? forcedError : matchmaking->GetErrorMessage();
|
||||
auto errorStr = !forcedError.empty() ? forcedError : matchmaking->GetErrorMessage();
|
||||
errorStr = ConvertStringForGame(errorStr, 120);
|
||||
m_read_queue.insert(m_read_queue.end(), errorStr.begin(), errorStr.end());
|
||||
|
||||
|
@ -2105,7 +2105,7 @@ void CEXISlippi::handleConnectionCleanup()
|
|||
stagePool.clear();
|
||||
|
||||
// Reset any forced errors
|
||||
forcedError.clear()
|
||||
forcedError.clear();
|
||||
|
||||
#ifdef LOCAL_TESTING
|
||||
isLocalConnected = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue