mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Merge pull request #3360 from ufdada/patch-2
Adding gameid to gameinfoscreen
This commit is contained in:
commit
0c9abf8d1a
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ void GameScreen::update(InputState &input) {
|
||||||
GameInfo *info = g_gameInfoCache.GetInfo(gamePath_, true);
|
GameInfo *info = g_gameInfoCache.GetInfo(gamePath_, true);
|
||||||
|
|
||||||
if (tvTitle_)
|
if (tvTitle_)
|
||||||
tvTitle_->SetText(info->title);
|
tvTitle_->SetText(info->title + " (" + info->id + ")");
|
||||||
if (info->iconTexture && texvGameIcon_) {
|
if (info->iconTexture && texvGameIcon_) {
|
||||||
texvGameIcon_->SetTexture(info->iconTexture);
|
texvGameIcon_->SetTexture(info->iconTexture);
|
||||||
uint32_t color = whiteAlpha(ease((time_now_d() - info->timeIconWasLoaded) * 3));
|
uint32_t color = whiteAlpha(ease((time_now_d() - info->timeIconWasLoaded) * 3));
|
||||||
|
|
Loading…
Add table
Reference in a new issue