Merge pull request #1065 from DarkLordZach/window-title

qt: Add filename and title id to window title while running
This commit is contained in:
Zach Hilman 2018-08-24 14:34:03 -04:00 committed by GitHub
commit f09da5d1c9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 0 deletions

View file

@ -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;