summaryrefslogtreecommitdiff
path: root/src/web_service/telemetry_json.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2017-07-09 13:49:51 -0400
committerGravatar bunnei2017-07-11 18:33:40 -0400
commit8af3ebb149b057b40bc4efd5bae2b9cb70b2066c (patch)
tree3625b4fe08f9c336879f244a298305c058cff1d2 /src/web_service/telemetry_json.cpp
parentweb_service: Implement JSON serialization of telemetry data. (diff)
downloadyuzu-8af3ebb149b057b40bc4efd5bae2b9cb70b2066c.tar.gz
yuzu-8af3ebb149b057b40bc4efd5bae2b9cb70b2066c.tar.xz
yuzu-8af3ebb149b057b40bc4efd5bae2b9cb70b2066c.zip
telemetry_session: Use TelemetryJson to submit real telemetry.
Diffstat (limited to 'src/web_service/telemetry_json.cpp')
-rw-r--r--src/web_service/telemetry_json.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/web_service/telemetry_json.cpp b/src/web_service/telemetry_json.cpp
index c61522ff1..a2d007e77 100644
--- a/src/web_service/telemetry_json.cpp
+++ b/src/web_service/telemetry_json.cpp
@@ -9,8 +9,6 @@
9 9
10namespace WebService { 10namespace WebService {
11 11
12TelemetryJson::TelemetryJson() {}
13
14template <class T> 12template <class T>
15void TelemetryJson::Serialize(Telemetry::FieldType type, const std::string& name, T value) { 13void TelemetryJson::Serialize(Telemetry::FieldType type, const std::string& name, T value) {
16 sections[static_cast<u8>(type)][name] = value; 14 sections[static_cast<u8>(type)][name] = value;