mirror of
https://gitlab.com/Theopse/fbi-i18n-zh.git
synced 2025-04-06 03:58:02 +08:00
Display version components in title list.
This commit is contained in:
parent
b37b3492ae
commit
0c28a4b604
@ -587,13 +587,13 @@ void ui_draw_title_info(ui_view* view, void* data, float x1, float y1, float x2,
|
||||
snprintf(infoText, sizeof(infoText),
|
||||
"Title ID: %016llX\n"
|
||||
"Media Type: %s\n"
|
||||
"Version: %hu\n"
|
||||
"Version: %hu (%d.%d.%d)\n"
|
||||
"Product Code: %s\n"
|
||||
"Region: %s\n"
|
||||
"Size: %.2f %s",
|
||||
info->titleId,
|
||||
info->mediaType == MEDIATYPE_NAND ? "NAND" : info->mediaType == MEDIATYPE_SD ? "SD" : "Game Card",
|
||||
info->version,
|
||||
info->version, (info->version >> 10) & 0x3F, (info->version >> 4) & 0x3F, info->version & 0xF,
|
||||
info->productCode,
|
||||
regionString,
|
||||
util_get_display_size(info->installedSize), util_get_display_size_units(info->installedSize));
|
||||
|
Loading…
x
Reference in New Issue
Block a user