From 28c0de1848dff1864ae2a96bf69a4e6d91c56118 Mon Sep 17 00:00:00 2001 From: shweet Date: Fri, 15 Aug 2025 13:00:55 -0400 Subject: [PATCH] ffmpeg dialog file filter fix for windows --- src/dialog.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/dialog.h b/src/dialog.h index 6c2896b..11e6380 100644 --- a/src/dialog.h +++ b/src/dialog.h @@ -23,7 +23,11 @@ const SDL_DialogFileFilter DIALOG_RENDER_FILE_FILTERS[] = const SDL_DialogFileFilter DIALOG_FILE_FILTER_FFMPEG[] = { +#ifdef _WIN32 {"Executable", "exe"} +#else + {"Executable", ""} +#endif }; enum DialogType