Open rtomasa opened 1 year ago
I was about to fix this, but apparently it is done on purpose, meaning that perhaps something needs to be changed in the frontend too if this is changed.
https://github.com/libretro/beetle-saturn-libretro/commit/34602749d5808570897ce96e821bbed85eb64ac1
Any decent examples of interlace switching when the screen is not black?
I was about to fix this, but apparently it is done on purpose, meaning that perhaps something needs to be changed in the frontend too if this is changed.
Any decent examples of interlace switching when the screen is not black?
Ohh interesting Maybe Dead or Alive and/or Virtua Fighter 2
The core is doing some weird logic when calling SET_GEOMETRY like subtracting 352px. The base_width and base_height are not the same as the width and height that are the correct ones. Actually it also calls input_set_geometry, which sets geometry_width and geometry_height with the proper values, but those variables are never used in the core.
Retroarch is able to properly display the game because it is setting geometry also based on the W and H coming from the video_refresh cb which reports the correct resolution, but these values mismatch with the SET_GEOMETRY ones.