mirror of
https://github.com/libretro/RetroArch
synced 2025-01-31 15:32:59 +00:00
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,
|
||||
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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user