beetle-psx-libretro/beetle_psx_globals.c
Margen67 cc82727f5b Fix #256 (Widescreen hack aspect ratio setting)
Adds an option to set the aspect ratio of the widescreen hack. Choices:
 16:10
 16:9 (default)
 21:9
 32:9
2020-12-13 06:19:35 -08:00

22 lines
538 B
C

#include <boolean.h>
#include <stdint.h>
#include "beetle_psx_globals.h"
bool content_is_pal = false;
uint8_t widescreen_hack;
uint8_t widescreen_hack_aspect_ratio_setting;
uint8_t psx_gpu_upscale_shift;
uint8_t psx_gpu_upscale_shift_hw;
int line_render_mode;
int filter_mode;
bool opaque_check;
bool semitrans_check;
bool crop_overscan = false;
int core_timing_fps_mode = FORCE_PROGRESSIVE_TIMING;
bool currently_interlaced = false;
bool interlace_setting_dirty = false;
int aspect_ratio_setting = 0;
bool aspect_ratio_dirty = false;