Refactor hex string handling: replace UppercaseHex functions with Hex equivalents
This commit is contained in:
@@ -355,7 +355,7 @@ void EditorManager::DrawInfoPopup() {
|
||||
if (BeginPopupModal("ROM Information", nullptr,
|
||||
ImGuiWindowFlags_AlwaysAutoResize)) {
|
||||
Text("Title: %s", rom()->title().c_str());
|
||||
Text("ROM Size: %s", core::UppercaseHexLongLong(rom()->size()).c_str());
|
||||
Text("ROM Size: %s", core::HexLongLong(rom()->size()).c_str());
|
||||
|
||||
if (Button("Close", gui::kDefaultModalSize) ||
|
||||
IsKeyPressed(ImGuiKey_Escape)) {
|
||||
|
||||
Reference in New Issue
Block a user