From 5bf82038addd501ada3144f90b8b1a2723fe13ac Mon Sep 17 00:00:00 2001 From: sonninnos Date: Wed, 1 Jun 2022 18:45:33 +0300 Subject: [PATCH] (WIN32) Fix video resolution logging --- gfx/common/win32_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gfx/common/win32_common.c b/gfx/common/win32_common.c index 82f88edd1a..5dea59fb03 100644 --- a/gfx/common/win32_common.c +++ b/gfx/common/win32_common.c @@ -2155,7 +2155,7 @@ void win32_set_style(MONITORINFOEX *current_mon, HMONITOR *hm_to_use, (int)refresh_rate, current_mon->szDevice)) { RARCH_LOG("[Video]: Fullscreen set to %ux%u @ %uHz on device %s.\n", - width, height, (int)refresh_rate, current_mon->szDevice); + *width, *height, (int)refresh_rate, current_mon->szDevice); } /* Display settings might have changed, get new coordinates. */