Skip to content

Commit

Permalink
Change physical pixels to false so hdpi do its job
Browse files Browse the repository at this point in the history
  • Loading branch information
xpenatan committed Aug 3, 2024
1 parent eb6f834 commit 333b177
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public class TeaApplicationConfiguration {
* Setting to false mostly makes sense for fixed-size games or non-mobile games expecting performance issues on huge
* resolutions. If you target mobiles and desktops, consider using physical device pixels on mobile devices only by using the
* return value of {@link TeaApplication#isMobileDevice()} . */
public boolean usePhysicalPixels = true;
public boolean usePhysicalPixels = false;

/**
* default, low-power or high-performance
Expand Down

0 comments on commit 333b177

Please sign in to comment.