Skip to content

Commit

Permalink
Adding disk id/label to isobrowser window.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasnoble committed Dec 5, 2022
1 parent 96e23a0 commit 4effe83
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/gui/widgets/isobrowser.cc
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,8 @@ void PCSX::Widgets::IsoBrowser::draw(CDRom* cdrom, const char* title) {
ImGui::End();
return;
}
ImGui::Text(_("GAME ID: %s"), g_emulator->m_cdrom->getCDRomID().c_str());
ImGui::Text(_("GAME Label: %s"), g_emulator->m_cdrom->getCDRomLabel().c_str());

bool canCache = false;
bool isCaching = false;
Expand Down

0 comments on commit 4effe83

Please sign in to comment.