From 05f933398c2e74bcfeae911e2c926df478f57b8a Mon Sep 17 00:00:00 2001 From: Armin Novak Date: Wed, 25 Jan 2023 12:43:22 +0100 Subject: [PATCH] [client,sdl] print number of monitors before listing --- client/SDL/sdl_monitor.c | 1 + 1 file changed, 1 insertion(+) diff --git a/client/SDL/sdl_monitor.c b/client/SDL/sdl_monitor.c index 929eba406..33a3f7221 100644 --- a/client/SDL/sdl_monitor.c +++ b/client/SDL/sdl_monitor.c @@ -59,6 +59,7 @@ int sdl_list_monitors(sdlContext* sdl) SDL_Init(SDL_INIT_VIDEO); const int nmonitors = SDL_GetNumVideoDisplays(); + printf("listing %d monitors:\n", nmonitors); for (int i = 0; i < nmonitors; i++) { SDL_Rect rect = { 0 };