Merge pull request #11510 from rsn8887/vita_scaling

[VITA] Default menu scale 1.5x to improve readability
This commit is contained in:
Autechre 2020-11-01 16:49:28 +01:00 committed by GitHub
commit 1d0c75a3d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1142,7 +1142,11 @@ static const int default_content_favorites_size = 200;
/* Default scale factor for non-frambuffer-based display
* drivers and display widgets */
#if defined(VITA)
#define DEFAULT_MENU_SCALE_FACTOR 1.5f
#else
#define DEFAULT_MENU_SCALE_FACTOR 1.0f
#endif
/* Specifies whether display widgets should be scaled
* automatically using the default menu scale factor */
#define DEFAULT_MENU_WIDGET_SCALE_AUTO true