diff options
author | bunnei <bunneidev@gmail.com> | 2019-03-06 21:41:53 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-06 21:41:53 -0500 |
commit | d2ff93c31952d5f9c278ea86b8fef177f78d226e (patch) | |
tree | bbdbd5c6b1013930170f80ec3b882271effb695f /src/yuzu/compatdb.cpp | |
parent | 75b417489ad3e23f62060933b0fe0f29646bbd04 (diff) | |
parent | b11492845938b5bea8f5927753e00328aaec56fc (diff) |
Merge pull request #2190 from lioncash/ogl-global
core: Remove the global telemetry accessor function
Diffstat (limited to 'src/yuzu/compatdb.cpp')
-rw-r--r-- | src/yuzu/compatdb.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu/compatdb.cpp b/src/yuzu/compatdb.cpp index c09a06520..c8b0a5ec0 100644 --- a/src/yuzu/compatdb.cpp +++ b/src/yuzu/compatdb.cpp @@ -53,8 +53,8 @@ void CompatDB::Submit() { case CompatDBPage::Final: back(); LOG_DEBUG(Frontend, "Compatibility Rating: {}", compatibility->checkedId()); - Core::Telemetry().AddField(Telemetry::FieldType::UserFeedback, "Compatibility", - compatibility->checkedId()); + Core::System::GetInstance().TelemetrySession().AddField( + Telemetry::FieldType::UserFeedback, "Compatibility", compatibility->checkedId()); button(NextButton)->setEnabled(false); button(NextButton)->setText(tr("Submitting")); |