Fix missing arg

This commit is contained in:
alphanu1 2020-07-28 18:15:01 +01:00
parent 55e3bd3d2d
commit 610f9d6c48

View File

@ -30512,13 +30512,13 @@ bool video_display_server_set_window_decorations(bool on)
}
bool video_display_server_set_resolution(unsigned width, unsigned height,
int int_hz, float hz, int center, int monitor_index, int xoffset)
int int_hz, float hz, int center, int monitor_index, int xoffset, int padjust)
{
struct rarch_state *p_rarch = &rarch_st;
if (current_display_server && current_display_server->set_resolution)
return current_display_server->set_resolution(
p_rarch->current_display_server_data, width, height, int_hz,
hz, center, monitor_index, xoffset);
hz, center, monitor_index, xoffset, padjust);
return false;
}