summaryrefslogtreecommitdiff
path: root/src/yuzu_cmd/yuzu.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2020-08-20 14:29:13 -0400
committerGravatar GitHub2020-08-20 14:29:13 -0400
commit3ea3de4ecd9a03da23b9e823ecc454481a60c3b9 (patch)
tree3a0142ea3800c4b79b56cfb66925bdc78c526808 /src/yuzu_cmd/yuzu.cpp
parentMerge pull request #4547 from lioncash/header-concept (diff)
parentcommon/telemetry: Migrate namespace into the Common namespace (diff)
downloadyuzu-3ea3de4ecd9a03da23b9e823ecc454481a60c3b9.tar.gz
yuzu-3ea3de4ecd9a03da23b9e823ecc454481a60c3b9.tar.xz
yuzu-3ea3de4ecd9a03da23b9e823ecc454481a60c3b9.zip
Merge pull request #4546 from lioncash/telemetry
common/telemetry: Migrate namespace into the Common namespace
Diffstat (limited to 'src/yuzu_cmd/yuzu.cpp')
-rw-r--r--src/yuzu_cmd/yuzu.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu_cmd/yuzu.cpp b/src/yuzu_cmd/yuzu.cpp
index 3f2f61ca0..8efe49390 100644
--- a/src/yuzu_cmd/yuzu.cpp
+++ b/src/yuzu_cmd/yuzu.cpp
@@ -229,7 +229,7 @@ int main(int argc, char** argv) {
229 } 229 }
230 } 230 }
231 231
232 system.TelemetrySession().AddField(Telemetry::FieldType::App, "Frontend", "SDL"); 232 system.TelemetrySession().AddField(Common::Telemetry::FieldType::App, "Frontend", "SDL");
233 233
234 // Core is loaded, start the GPU (makes the GPU contexts current to this thread) 234 // Core is loaded, start the GPU (makes the GPU contexts current to this thread)
235 system.GPU().Start(); 235 system.GPU().Start();