aboutsummaryrefslogtreecommitdiff
path: root/frontend/menu_trimui.h
diff options
context:
space:
mode:
authorneonloop2021-04-03 21:26:23 +0000
committerneonloop2021-04-03 21:26:23 +0000
commit076eba28b80edeb7566d8e12713b029bd324a67b (patch)
tree979e2953c23417bfa1a2775a92b379cbfc72ded2 /frontend/menu_trimui.h
parentf924bac9babee54b91c1a66055afdabb9feea339 (diff)
downloadpcsx_rearmed-076eba28b80edeb7566d8e12713b029bd324a67b.tar.gz
pcsx_rearmed-076eba28b80edeb7566d8e12713b029bd324a67b.tar.bz2
pcsx_rearmed-076eba28b80edeb7566d8e12713b029bd324a67b.zip
Adds an option for scaling 256px-wide screens
This option takes over the Software Scaling option in the display menu. There is a performance cost (about 10%). It does subpixel scaling to keep the image as sharp as it can be. This also moves scaling into its own loop -- I saw a 4-6% increase in performance when upscaling and downscaling after making that change.
Diffstat (limited to 'frontend/menu_trimui.h')
-rw-r--r--frontend/menu_trimui.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/frontend/menu_trimui.h b/frontend/menu_trimui.h
index 6fa0fdc..87824f2 100644
--- a/frontend/menu_trimui.h
+++ b/frontend/menu_trimui.h
@@ -19,13 +19,14 @@
#define MENU_BIOS_PATH "pcsx_rearmed/bios/"
#define MENU_SHOW_VARSCALER 0
#define MENU_SHOW_VOUTMODE 0
-#define MENU_SHOW_SCALER2 0
+#define MENU_SHOW_SCALER2 1
#define MENU_SHOW_NUBS_BTNS 0
#define MENU_SHOW_VIBRATION 0
#define MENU_SHOW_DEADZONE 0
#define MENU_SHOW_MINIMIZE 0
-#define MENU_SHOW_FULLSCREEN 1
+#define MENU_SHOW_FULLSCREEN 0
#define MENU_SHOW_VOLUME 0
-#define MENU_SHOW_DISPLAY 0
+#define MENU_SHOW_DISPLAY 1
+#define MENU_SHOW_PEOPS 0
#endif