diff options
author | Lioncash <mathew1800@gmail.com> | 2020-08-18 14:21:50 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-08-18 15:08:32 -0400 |
commit | f6bb905182b31a4ee4ccffe7d56b8743cf0ca3b4 (patch) | |
tree | 6ba40b5d404c76f1f8be55f0e592afab83ab6563 /src/yuzu/main.cpp | |
parent | bea9ed2548abfa738d3381a152e7ece42efbf08d (diff) |
common/telemetry: Migrate namespace into the Common namespace
Migrates the Telemetry namespace into the Common namespace to make the
code consistent with the rest of our common code.
Diffstat (limited to 'src/yuzu/main.cpp')
-rw-r--r-- | src/yuzu/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |