Fix missing arg
This commit is contained in:
parent
55e3bd3d2d
commit
610f9d6c48
|
@ -30512,13 +30512,13 @@ bool video_display_server_set_window_decorations(bool on)
|
||||||
}
|
}
|
||||||
|
|
||||||
bool video_display_server_set_resolution(unsigned width, unsigned height,
|
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;
|
struct rarch_state *p_rarch = &rarch_st;
|
||||||
if (current_display_server && current_display_server->set_resolution)
|
if (current_display_server && current_display_server->set_resolution)
|
||||||
return current_display_server->set_resolution(
|
return current_display_server->set_resolution(
|
||||||
p_rarch->current_display_server_data, width, height, int_hz,
|
p_rarch->current_display_server_data, width, height, int_hz,
|
||||||
hz, center, monitor_index, xoffset);
|
hz, center, monitor_index, xoffset, padjust);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue