From db751b42412f5545e14dd1021508e2af65b5a1df Mon Sep 17 00:00:00 2001 From: alphanu1 <37101891+alphanu1@users.noreply.github.com> Date: Mon, 30 Apr 2018 17:50:13 +0100 Subject: [PATCH] Variable rename --- gfx/video_display_server.c | 4 ++-- gfx/video_display_server.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gfx/video_display_server.c b/gfx/video_display_server.c index 9e24223e8f..c0df92ddf3 100644 --- a/gfx/video_display_server.c +++ b/gfx/video_display_server.c @@ -84,9 +84,9 @@ bool video_display_server_set_window_decorations(bool on) bool video_display_server_switch_resolution(unsigned width, unsigned height, - int win_hz, float hz) + int int_hz, float hz) { if (current_display_server && current_display_server->switch_resolution) - return current_display_server->switch_resolution(current_display_server_data, width, height, win_hz, hz); + return current_display_server->switch_resolution(current_display_server_data, width, height, int_hz, hz); return false; } diff --git a/gfx/video_display_server.h b/gfx/video_display_server.h index 5f86523d47..e672f0bc7d 100644 --- a/gfx/video_display_server.h +++ b/gfx/video_display_server.h @@ -31,7 +31,7 @@ typedef struct video_display_server bool (*set_window_progress)(void *data, int progress, bool finished); bool (*set_window_decorations)(void *data, bool on); bool (*switch_resolution)(void *data, unsigned width, - unsigned height, int win_hz, float hz); + unsigned height, int int_hz, float hz); const char *ident; } video_display_server_t; @@ -47,7 +47,7 @@ bool video_display_server_set_window_decorations(bool on); bool video_display_server_switch_resolution( unsigned width, unsigned height, - int win_hz, float hz); + int int_hz, float hz); extern const video_display_server_t dispserv_win32; extern const video_display_server_t dispserv_x11;