summaryrefslogtreecommitdiffstats
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2020-07-12 02:42:56 +0200
committerReinUsesLisp <reinuseslisp@airmail.cc>2020-07-19 09:12:40 +0200
commit51817f6e59e420536901e3225091894ea6ad1b25 (patch)
treefba868b13fcc9957cec4ffefcc8f03ad3be3d56a /src/core/core.cpp
parentMerge pull request #4322 from ReinUsesLisp/fix-dynstate (diff)
downloadyuzu-51817f6e59e420536901e3225091894ea6ad1b25.tar
yuzu-51817f6e59e420536901e3225091894ea6ad1b25.tar.gz
yuzu-51817f6e59e420536901e3225091894ea6ad1b25.tar.bz2
yuzu-51817f6e59e420536901e3225091894ea6ad1b25.tar.lz
yuzu-51817f6e59e420536901e3225091894ea6ad1b25.tar.xz
yuzu-51817f6e59e420536901e3225091894ea6ad1b25.tar.zst
yuzu-51817f6e59e420536901e3225091894ea6ad1b25.zip
Diffstat (limited to '')
-rw-r--r--src/core/core.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp
index 69a1aa0a5..e598c0e2b 100644
--- a/src/core/core.cpp
+++ b/src/core/core.cpp
@@ -43,6 +43,7 @@
#include "core/loader/loader.h"
#include "core/memory.h"
#include "core/memory/cheat_engine.h"
+#include "core/network/network.h"
#include "core/perf_stats.h"
#include "core/reporter.h"
#include "core/settings.h"
@@ -394,6 +395,9 @@ struct System::Impl {
/// Telemetry session for this emulation session
std::unique_ptr<Core::TelemetrySession> telemetry_session;
+ /// Network instance
+ Network::NetworkInstance network_instance;
+
ResultStatus status = ResultStatus::Success;
std::string status_details = "";