mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Increase the max size of rendered text, for Android devices with insane resolutions.
This commit is contained in:
parent
3c87b3fb8d
commit
4221a09edf
1 changed files with 4 additions and 4 deletions
|
@ -61,10 +61,10 @@ public class TextRenderer {
|
|||
total.x = 1;
|
||||
if (total.y < 1)
|
||||
total.y = 1;
|
||||
if (total.x > 2048)
|
||||
total.x = 2048;
|
||||
if (total.y > 2048)
|
||||
total.y = 2048;
|
||||
if (total.x > 4096)
|
||||
total.x = 4096;
|
||||
if (total.y > 4096)
|
||||
total.y = 4096;
|
||||
return total;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue