From 5f86f64f06e3f7f8a6a7589d6e09d10a01e6b735 Mon Sep 17 00:00:00 2001 From: SDL Wiki Bot Date: Thu, 9 May 2024 23:33:11 +0000 Subject: [PATCH] Sync SDL3 wiki -> header --- include/SDL3/SDL_dialog.h | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/include/SDL3/SDL_dialog.h b/include/SDL3/SDL_dialog.h index 4f4acbd130..b76b4b1af2 100644 --- a/include/SDL3/SDL_dialog.h +++ b/include/SDL3/SDL_dialog.h @@ -60,11 +60,14 @@ typedef struct SDL_DialogFileFilter * * The specific usage is described in each function. * - * If filelist is... - `NULL`, an error occured. Details can be obtained with - * SDL_GetError(). - A pointer to `NULL`, the user either didn't choose any - * file or canceled the dialog. - A pointer to non-`NULL`, the user chose one - * or more files. The argument is a null-terminated list of pointers to C - * strings, each containing a path. + * If `filelist` is: + * + * - NULL, an error occured. Details can be obtained with SDL_GetError(). + * - A pointer to NULL, the user either didn't choose any file or canceled the + * dialog. + * - A pointer to non-`NULL`, the user chose one or more files. The argument + * is a null-terminated list of pointers to C strings, each containing a + * path. * * The filelist argument does not need to be freed; it will automatically be * freed when the callback returns.