summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2018-08-23 20:12:56 +0200
committerZach Hilman <zachhilman@gmail.com>2018-08-23 20:12:56 +0200
commit67fa51ea2f54355bcf49bed36658151e6153bb44 (patch)
treee066bd93a6d72de7011cabcd096db6ae8bfb8873 /src/core
parentMerge pull request #1160 from bunnei/surface-reserve (diff)
downloadyuzu-67fa51ea2f54355bcf49bed36658151e6153bb44.tar
yuzu-67fa51ea2f54355bcf49bed36658151e6153bb44.tar.gz
yuzu-67fa51ea2f54355bcf49bed36658151e6153bb44.tar.bz2
yuzu-67fa51ea2f54355bcf49bed36658151e6153bb44.tar.lz
yuzu-67fa51ea2f54355bcf49bed36658151e6153bb44.tar.xz
yuzu-67fa51ea2f54355bcf49bed36658151e6153bb44.tar.zst
yuzu-67fa51ea2f54355bcf49bed36658151e6153bb44.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/core.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/core.h b/src/core/core.h
index 790e23cae..7188dabdc 100644
--- a/src/core/core.h
+++ b/src/core/core.h
@@ -187,6 +187,13 @@ public:
return current_process;
}
+ /// Gets the name of the current game
+ Loader::ResultStatus GetGameName(std::string& out) const {
+ if (app_loader == nullptr)
+ return Loader::ResultStatus::ErrorNotInitialized;
+ return app_loader->ReadTitle(out);
+ }
+
PerfStats perf_stats;
FrameLimiter frame_limiter;