You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With those modifications and preset file, every games on Saturn and PSX work fine with pixel aspect ratio on LCD. My monitor use 1920x1080 and I've this config in retroarch.
aspect_ratio_index = "21"
video_crop_overscan = "false"
video_driver = "glcore"
video_scale_integer = "true"
Only for PSX, I've another config.
aspect_ratio_index = "23"
custom_viewport_height = "960"
custom_viewport_width = "1600"
video_crop_overscan = "false"
video_driver = "glcore"
video_scale_integer = "true"
The text was updated successfully, but these errors were encountered:
With my previous modification, everything worked fine except if video_scale_integer = "false" and emulator used 480i mode. For exemple, instead of get 1280x960, I'd got 1280x1920.
Now, box-max.slang shader will provide right resolution on LCD (pixel aspect ratio) in integer scale with each video mode and retroarch settings about integer scale. It's no more necessary check if integer scale is true or false for Beetle Saturn.
Unfortunatly, for Beetle PSX core, you've always need use video_scale_integer = "true" and settings writed upper.
Hello,
I send this post to bring solution for some retroarch cores (Beetle Saturn & Beetle PSX).
Look issue open September 18, 2018 by retrorepair about switch horizontal resolutions with Beetle Saturn core. https://github.com/libretro/beetle-saturn-libretro/issues/125
I‘ve begun from your work in box-max shader (shaders_slang\auto-box\box-max.slang).
In first, I've changed line 28 like this.
In second, I've changed line 38.
by
It's necessary used one preset file with previous shader like scanlines.slang (shaders_slang\reshade\shaders\scanlines.slang) and those setting.
With those modifications and preset file, every games on Saturn and PSX work fine with pixel aspect ratio on LCD. My monitor use 1920x1080 and I've this config in retroarch.
aspect_ratio_index = "21"
video_crop_overscan = "false"
video_driver = "glcore"
video_scale_integer = "true"
Only for PSX, I've another config.
aspect_ratio_index = "23"
custom_viewport_height = "960"
custom_viewport_width = "1600"
video_crop_overscan = "false"
video_driver = "glcore"
video_scale_integer = "true"
The text was updated successfully, but these errors were encountered: