diff --git a/Externals/SDL/SDL b/Externals/SDL/SDL index f741adc86c..c98c4fbff6 160000 --- a/Externals/SDL/SDL +++ b/Externals/SDL/SDL @@ -1 +1 @@ -Subproject commit f741adc86c8f5e7fc5c1863cf0d5e08b899d6209 +Subproject commit c98c4fbff6d8f3016a3ce6685bf8f43433c3efcc diff --git a/Externals/SDL/SDL2.vcxproj b/Externals/SDL/SDL2.vcxproj index 8622894d84..66aace96fc 100644 --- a/Externals/SDL/SDL2.vcxproj +++ b/Externals/SDL/SDL2.vcxproj @@ -4,7 +4,6 @@ {8DC244EE-A0BD-4038-BAF7-CFAFA5EB2BAA} - 10.0 @@ -131,11 +130,17 @@ + + + + + + @@ -186,6 +191,13 @@ + + + + + + + @@ -199,6 +211,7 @@ + @@ -231,14 +244,19 @@ - - - + + + + + + + + @@ -291,14 +309,17 @@ + + + @@ -401,7 +422,9 @@ - + + + diff --git a/Source/Core/Core/NetPlayServer.cpp b/Source/Core/Core/NetPlayServer.cpp index ff44fc3a49..98657f7d1d 100644 --- a/Source/Core/Core/NetPlayServer.cpp +++ b/Source/Core/Core/NetPlayServer.cpp @@ -2182,7 +2182,7 @@ bool NetPlayServer::SyncCodes() codeStr += "• " + code + "\n"; packet << codeStr; SendAsyncToClients(std::move(pac)); - + } } @@ -2225,8 +2225,7 @@ bool NetPlayServer::SyncCodes() pac << MessageID::SyncCodes; pac << SyncCodeID::ARData; // Iterate through the active code vector and send each codeline - std::vector v_ActiveARCodes = {}; - for (const ActionReplay::ARCode& active_code : s_active_codes) + for (const ActionReplay::ARCode& active_code : active_codes) { INFO_LOG_FMT(NETPLAY, "Sending {}", active_code.name); for (const ActionReplay::AREntry& op : active_code.ops)