[UI] Add game title ID to titlebar

This commit is contained in:
DrChat
2017-12-17 22:16:00 -06:00
parent 6e0550d46b
commit 76b577148d
2 changed files with 7 additions and 3 deletions

View File

@@ -56,6 +56,9 @@ class Emulator {
// Title of the game in the default language.
const std::wstring& game_title() const { return game_title_; }
// Currently running title ID
uint32_t title_id() const { return title_id_; }
// Are we currently running a title?
bool is_title_open() const { return title_id_ != 0; }