mirror of
https://github.com/libretro/RetroArch
synced 2025-03-17 10:21:26 +00:00
Buildfix
This commit is contained in:
parent
71019e1121
commit
5d065e7efc
@ -60,12 +60,6 @@
|
||||
|
||||
#define TIME_TO_FPS(last_time, new_time, frames) ((1000000.0f * (frames)) / ((new_time) - (last_time)))
|
||||
|
||||
struct aspect_ratio_elem
|
||||
{
|
||||
float value;
|
||||
char name[64];
|
||||
};
|
||||
|
||||
typedef struct
|
||||
{
|
||||
struct string_list *list;
|
||||
|
@ -880,7 +880,8 @@ typedef struct
|
||||
bool threaded;
|
||||
} video_driver_state_t;
|
||||
|
||||
typedef struct video_frame_delay_auto {
|
||||
typedef struct video_frame_delay_auto
|
||||
{
|
||||
float refresh_rate;
|
||||
uint16_t frame_time_target;
|
||||
uint16_t frame_time_average;
|
||||
@ -888,6 +889,12 @@ typedef struct video_frame_delay_auto {
|
||||
uint8_t delay_decrease;
|
||||
} video_frame_delay_auto_t;
|
||||
|
||||
struct aspect_ratio_elem
|
||||
{
|
||||
float value;
|
||||
char name[64];
|
||||
};
|
||||
|
||||
extern struct aspect_ratio_elem aspectratio_lut[ASPECT_RATIO_END];
|
||||
|
||||
bool video_driver_has_windowed(void);
|
||||
|
Loading…
x
Reference in New Issue
Block a user