output rom size in hex longlong format

This commit is contained in:
scawful
2024-08-10 21:46:08 -04:00
parent 6dc90ead13
commit 52502dc568
3 changed files with 6 additions and 1 deletions

View File

@@ -376,7 +376,7 @@ void EditorManager::DrawInfoPopup() {
if (BeginPopupModal("ROM Information", nullptr,
ImGuiWindowFlags_AlwaysAutoResize)) {
Text("Title: %s", rom()->title().c_str());
Text("ROM Size: %ld", rom()->size());
Text("ROM Size: %s", core::UppercaseHexLongLong(rom()->size()).c_str());
if (Button("Close", gui::kDefaultModalSize) ||
IsKeyPressed(GetKeyIndex(ImGuiKey_Space))) {