mirror of
https://github.com/libretro/beetle-psx-libretro.git
synced 2024-11-27 02:40:31 +00:00
815febac03
De-hardcode the sample rate, framerate, width/height. Get rid of an awkward function. Style nits here and there.
21 lines
326 B
C
21 lines
326 B
C
#ifndef __LIBRETRO_CBS_H
|
|
#define __LIBRETRO_CBS_H
|
|
|
|
#include <boolean.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern bool content_is_pal;
|
|
extern retro_video_refresh_t video_cb;
|
|
extern retro_environment_t environ_cb;
|
|
extern uint8_t widescreen_hack;
|
|
extern uint8_t psx_gpu_upscale_shift;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|