summaryrefslogtreecommitdiff
path: root/src/yuzu
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-08-20 14:29:13 -0400
committerGitHub <noreply@github.com>2020-08-20 14:29:13 -0400
commit3ea3de4ecd9a03da23b9e823ecc454481a60c3b9 (patch)
tree3a0142ea3800c4b79b56cfb66925bdc78c526808 /src/yuzu
parent3b8a8cf825306032242000f14dc8dcacde6335d3 (diff)
parentf6bb905182b31a4ee4ccffe7d56b8743cf0ca3b4 (diff)
Merge pull request #4546 from lioncash/telemetry
common/telemetry: Migrate namespace into the Common namespace
Diffstat (limited to 'src/yuzu')
-rw-r--r--src/yuzu/compatdb.cpp3
-rw-r--r--src/yuzu/main.cpp2
2 files changed, 3 insertions, 2 deletions
diff --git a/src/yuzu/compatdb.cpp b/src/yuzu/compatdb.cpp
index 5477f050c..649912557 100644
--- a/src/yuzu/compatdb.cpp
+++ b/src/yuzu/compatdb.cpp
@@ -54,7 +54,8 @@ void CompatDB::Submit() {
back();
LOG_DEBUG(Frontend, "Compatibility Rating: {}", compatibility->checkedId());
Core::System::GetInstance().TelemetrySession().AddField(
- Telemetry::FieldType::UserFeedback, "Compatibility", compatibility->checkedId());
+ Common::Telemetry::FieldType::UserFeedback, "Compatibility",
+ compatibility->checkedId());
button(NextButton)->setEnabled(false);
button(NextButton)->setText(tr("Submitting"));
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp
index c6b7e2c00..cd7e78eb4 100644
--- a/src/yuzu/main.cpp
+++ b/src/yuzu/main.cpp
@@ -1041,7 +1041,7 @@ bool GMainWindow::LoadROM(const QString& filename) {
}
game_path = filename;
- system.TelemetrySession().AddField(Telemetry::FieldType::App, "Frontend", "Qt");
+ system.TelemetrySession().AddField(Common::Telemetry::FieldType::App, "Frontend", "Qt");
return true;
}