mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 08:30:16 +00:00
Set these static variables initially to NULL
This commit is contained in:
parent
12e453c29a
commit
12d1de4232
@ -91,17 +91,17 @@ static enum rarch_display_type video_driver_display_type;
|
||||
|
||||
static uint64_t video_driver_frame_count;
|
||||
|
||||
static void *video_driver_data;
|
||||
static video_driver_t *current_video;
|
||||
static void *video_driver_data = NULL;
|
||||
static video_driver_t *current_video = NULL;
|
||||
|
||||
/* Interface for "poking". */
|
||||
static const video_poke_interface_t *video_driver_poke;
|
||||
static const video_poke_interface_t *video_driver_poke = NULL;
|
||||
|
||||
static video_driver_state_t video_driver_state;
|
||||
static video_driver_state_t video_driver_state = NULL;
|
||||
|
||||
/* Used for 16-bit -> 16-bit conversions that take place before
|
||||
* being passed to video driver. */
|
||||
static video_pixel_scaler_t *video_driver_scaler_ptr;
|
||||
static video_pixel_scaler_t *video_driver_scaler_ptr = NULL;
|
||||
|
||||
char rotation_lut[4][32] =
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user