dialog: convert_ext_list had parameter names in wrong order in header.

main
Ryan C. Gordon 2024-04-17 21:45:51 -04:00
parent 7dd4f1ec22
commit bc6ad3ee43
No known key found for this signature in database
GPG Key ID: FA148B892AB48044
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ char *convert_filter(const SDL_DialogFileFilter filter, NameTransform ntf,
/* Converts the extenstion list of a filter into a single string. */ /* Converts the extenstion list of a filter into a single string. */
/* <prefix>[extension]{<separator>[extension]...}<suffix> */ /* <prefix>[extension]{<separator>[extension]...}<suffix> */
char *convert_ext_list(const char *list, const char *prefix, char *convert_ext_list(const char *list, const char *prefix,
const char *suffix, const char *separator); const char *separator, const char *suffix);
/* Must be used if convert_* functions aren't used */ /* Must be used if convert_* functions aren't used */
/* Returns an error message if there's a problem, NULL otherwise */ /* Returns an error message if there's a problem, NULL otherwise */