mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Make "DPI" translatable
This commit is contained in:
parent
07c043a4ee
commit
91e7cc6976
1 changed files with 2 additions and 1 deletions
|
@ -584,9 +584,10 @@ void SystemInfoScreen::CreateViews() {
|
|||
deviceSpecs->Add(new InfoItem(si->T("Native Resolution"), StringFromFormat("%dx%d",
|
||||
System_GetPropertyInt(SYSPROP_DISPLAY_XRES),
|
||||
System_GetPropertyInt(SYSPROP_DISPLAY_YRES))));
|
||||
deviceSpecs->Add(new InfoItem(si->T("UI Resolution"), StringFromFormat("%dx%d (dpi: %0.2f)",
|
||||
deviceSpecs->Add(new InfoItem(si->T("UI Resolution"), StringFromFormat("%dx%d (%s: %0.2f)",
|
||||
dp_xres,
|
||||
dp_yres,
|
||||
si->T("DPI"),
|
||||
g_dpi)));
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue