summaryrefslogtreecommitdiff
path: root/src/yuzu_tester/yuzu.cpp
diff options
context:
space:
mode:
authorGravatar Lioncash2020-08-18 14:21:50 -0400
committerGravatar Lioncash2020-08-18 15:08:32 -0400
commitf6bb905182b31a4ee4ccffe7d56b8743cf0ca3b4 (patch)
tree6ba40b5d404c76f1f8be55f0e592afab83ab6563 /src/yuzu_tester/yuzu.cpp
parentMerge pull request #4381 from Morph1984/fix-open-folder-installed-title (diff)
downloadyuzu-f6bb905182b31a4ee4ccffe7d56b8743cf0ca3b4.tar.gz
yuzu-f6bb905182b31a4ee4ccffe7d56b8743cf0ca3b4.tar.xz
yuzu-f6bb905182b31a4ee4ccffe7d56b8743cf0ca3b4.zip
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 '')
-rw-r--r--src/yuzu_tester/yuzu.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/yuzu_tester/yuzu.cpp b/src/yuzu_tester/yuzu.cpp
index 7c5ac5681..7acf0caad 100644
--- a/src/yuzu_tester/yuzu.cpp
+++ b/src/yuzu_tester/yuzu.cpp
@@ -251,7 +251,8 @@ int main(int argc, char** argv) {
251 251
252 Service::Yuzu::InstallInterfaces(system.ServiceManager(), datastring, callback); 252 Service::Yuzu::InstallInterfaces(system.ServiceManager(), datastring, callback);
253 253
254 system.TelemetrySession().AddField(Telemetry::FieldType::App, "Frontend", "SDLHideTester"); 254 system.TelemetrySession().AddField(Common::Telemetry::FieldType::App, "Frontend",
255 "SDLHideTester");
255 256
256 system.GPU().Start(); 257 system.GPU().Start();
257 system.Renderer().Rasterizer().LoadDiskResources(); 258 system.Renderer().Rasterizer().LoadDiskResources();