diff --git a/Source/Core/Core/State.cpp b/Source/Core/Core/State.cpp index 9e3afb32d2..11d04bd625 100644 --- a/Source/Core/Core/State.cpp +++ b/Source/Core/Core/State.cpp @@ -9,6 +9,7 @@ #include #include #include +#include #include "Common/ChunkFile.h" #include "Common/CommonTypes.h" @@ -190,6 +191,10 @@ void LoadFromBuffer(std::vector& buffer) OSD::AddMessage("Loading savestates is disabled in multiplayer Netplay lobbies to prevent desyncs"); return; } + else if (IsOnline()) + { + return; // No loading states when online on slippi either + } bool wasUnpaused = Core::PauseAndLock(true); @@ -532,6 +537,10 @@ void LoadAs(const std::string& filename) OSD::AddMessage("Loading savestates is disabled in multiplayer Netplay lobbies to prevent desyncs"); return; } + else if (IsOnline()) + { + return; // No loading states when online on slippi either + } // Stop the core while we load the state bool wasUnpaused = Core::PauseAndLock(true);