mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
Cleanup
This commit is contained in:
parent
d4534cca19
commit
4e03865a78
3 changed files with 4 additions and 4 deletions
|
@ -1157,7 +1157,7 @@ void rarch_init_system_av_info(void)
|
|||
video_viewport_get_system_av_info();
|
||||
|
||||
pretro_get_system_av_info(av_info);
|
||||
rarch_main_set_frame_limit_last_time(rarch_get_time_usec());
|
||||
rarch_main_set_frame_limit_last_time();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -834,9 +834,9 @@ void rarch_main_state_free(void)
|
|||
main_max_frames = 0;
|
||||
}
|
||||
|
||||
void rarch_main_set_frame_limit_last_time(retro_time_t t)
|
||||
void rarch_main_set_frame_limit_last_time(void)
|
||||
{
|
||||
frame_limit_last_time = t;
|
||||
frame_limit_last_time = rarch_get_time_usec();
|
||||
}
|
||||
|
||||
void rarch_main_global_free(void)
|
||||
|
|
|
@ -338,7 +338,7 @@ void rarch_main_set_slowmotion(unsigned enable);
|
|||
|
||||
void rarch_main_set_pause(unsigned enable);
|
||||
|
||||
void rarch_main_set_frame_limit_last_time(retro_time_t t);
|
||||
void rarch_main_set_frame_limit_last_time(void);
|
||||
|
||||
void rarch_main_set_max_frames(unsigned val);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue