mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 05:19:56 +00:00
Remove some redundant strings in sys info (GL precision).
As montioned in #18045
This commit is contained in:
parent
9a7579f8fa
commit
9993df5e77
@ -566,13 +566,13 @@ void SystemInfoScreen::CreateTabs() {
|
||||
int highp_float_min = gl_extensions.range[1][2][0];
|
||||
int highp_float_max = gl_extensions.range[1][2][1];
|
||||
if (highp_int_max != 0) {
|
||||
char temp[512];
|
||||
snprintf(temp, sizeof(temp), "Highp int range: %d-%d", highp_int_min, highp_int_max);
|
||||
char temp[128];
|
||||
snprintf(temp, sizeof(temp), "%d-%d", highp_int_min, highp_int_max);
|
||||
gpuInfo->Add(new InfoItem(si->T("High precision int range"), temp));
|
||||
}
|
||||
if (highp_float_max != 0) {
|
||||
char temp[512];
|
||||
snprintf(temp, sizeof(temp), "Highp float range: %d-%d", highp_int_min, highp_int_max);
|
||||
char temp[128];
|
||||
snprintf(temp, sizeof(temp), "%d-%d", highp_int_min, highp_int_max);
|
||||
gpuInfo->Add(new InfoItem(si->T("High precision float range"), temp));
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user