diff --git a/retroarch.c b/retroarch.c index fe8f1b848d..02f4e61474 100644 --- a/retroarch.c +++ b/retroarch.c @@ -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; }