mirror of
https://github.com/libretro/RetroArch
synced 2025-03-01 16:13:40 +00:00
Turn function static
This commit is contained in:
parent
b3e72f6f42
commit
f8051d846f
@ -755,7 +755,8 @@ static bool init_video(void)
|
||||
video_driver_set_rotation(
|
||||
(settings->video.rotation + system->rotation) % 4);
|
||||
|
||||
video_driver_suppress_screensaver(settings->ui.suspend_screensaver_enable);
|
||||
current_video->suppress_screensaver(video_driver_data,
|
||||
settings->ui.suspend_screensaver_enable);
|
||||
|
||||
init_video_input(tmp);
|
||||
|
||||
@ -775,10 +776,6 @@ error:
|
||||
return false;
|
||||
}
|
||||
|
||||
bool video_driver_suppress_screensaver(bool enable)
|
||||
{
|
||||
return current_video->suppress_screensaver(video_driver_data, enable);
|
||||
}
|
||||
|
||||
|
||||
bool video_driver_set_viewport(unsigned width, unsigned height,
|
||||
|
@ -419,8 +419,6 @@ void * video_driver_read_frame_raw(unsigned *width,
|
||||
|
||||
void video_driver_set_filtering(unsigned index, bool smooth);
|
||||
|
||||
bool video_driver_suppress_screensaver(bool enable);
|
||||
|
||||
const char *video_driver_get_ident(void);
|
||||
|
||||
bool video_driver_set_viewport(unsigned width, unsigned height,
|
||||
|
Loading…
x
Reference in New Issue
Block a user