2019-12-08 17:26:41 +00:00
|
|
|
#include <boolean.h>
|
|
|
|
#include <stdint.h>
|
2020-03-01 07:53:26 +00:00
|
|
|
#include "beetle_psx_globals.h"
|
2019-12-08 17:26:41 +00:00
|
|
|
|
|
|
|
bool content_is_pal = false;
|
|
|
|
uint8_t widescreen_hack;
|
2020-12-12 10:18:40 +00:00
|
|
|
uint8_t widescreen_hack_aspect_ratio_setting;
|
2019-12-08 17:26:41 +00:00
|
|
|
uint8_t psx_gpu_upscale_shift;
|
2020-09-27 08:01:20 +00:00
|
|
|
uint8_t psx_gpu_upscale_shift_hw;
|
2019-12-08 17:26:41 +00:00
|
|
|
int line_render_mode;
|
|
|
|
int filter_mode;
|
|
|
|
bool opaque_check;
|
|
|
|
bool semitrans_check;
|
2021-11-01 16:25:49 +00:00
|
|
|
int crop_overscan = 0;
|
2020-03-01 07:53:26 +00:00
|
|
|
|
|
|
|
int core_timing_fps_mode = FORCE_PROGRESSIVE_TIMING;
|
|
|
|
bool currently_interlaced = false;
|
|
|
|
bool interlace_setting_dirty = false;
|
2020-02-27 03:05:15 +00:00
|
|
|
|
|
|
|
int aspect_ratio_setting = 0;
|
|
|
|
bool aspect_ratio_dirty = false;
|
2021-10-10 23:51:03 +00:00
|
|
|
bool is_monkey_hero = false;
|