This commit is contained in:
twinaphex 2016-11-21 13:23:36 +01:00
parent 05d6735720
commit 6c3a5fe634
2 changed files with 3 additions and 1 deletions

View File

@ -85,7 +85,7 @@ static bool video_driver_state_out_rgb32 = false;
static enum retro_pixel_format video_driver_pix_fmt = RETRO_PIXEL_FORMAT_0RGB1555;
static const void *frame_cache_data = NULL;
const void *frame_cache_data = NULL;
static unsigned frame_cache_width = 0;
static unsigned frame_cache_height = 0;
static size_t frame_cache_pitch = 0;

View File

@ -514,6 +514,8 @@ extern video_driver_t video_drm;
extern video_driver_t video_xshm;
extern video_driver_t video_null;
extern const void *frame_cache_data;
extern void *video_driver_data;
extern video_driver_t *current_video;