summaryrefslogtreecommitdiff
path: root/src/core/telemetry_session.h
diff options
context:
space:
mode:
authorGravatar zhupengfei2019-04-19 22:02:49 +0800
committerGravatar fearlessTobi2019-05-04 19:45:48 +0200
commit10c4f23953c12cf55afb8d7fe16c1675aa73c694 (patch)
tree47449be655f9c5d494648d9eb7c0420cb58e1995 /src/core/telemetry_session.h
parentloader/nso: Remove left-in debug pragma (diff)
downloadyuzu-10c4f23953c12cf55afb8d7fe16c1675aa73c694.tar.gz
yuzu-10c4f23953c12cf55afb8d7fe16c1675aa73c694.tar.xz
yuzu-10c4f23953c12cf55afb8d7fe16c1675aa73c694.zip
core/telemetry_session: Only create the backend when we really need it
The backend is not used until we decide to submit the testcase/telemetry, and creating it early prevents users from updating the credentials properly while the games are running.
Diffstat (limited to 'src/core/telemetry_session.h')
-rw-r--r--src/core/telemetry_session.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/telemetry_session.h b/src/core/telemetry_session.h
index 023612b79..cae5a45a0 100644
--- a/src/core/telemetry_session.h
+++ b/src/core/telemetry_session.h
@@ -39,7 +39,6 @@ public:
39 39
40private: 40private:
41 Telemetry::FieldCollection field_collection; ///< Tracks all added fields for the session 41 Telemetry::FieldCollection field_collection; ///< Tracks all added fields for the session
42 std::unique_ptr<Telemetry::VisitorInterface> backend; ///< Backend interface that logs fields
43}; 42};
44 43
45/** 44/**