From e095ee43038e89c7f1d7412b55fb7ff23b90fcd9 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Thu, 14 Aug 2014 21:27:00 -0400 Subject: [PATCH] Backport from default branch: corrected PHYSFS_enumerateFiles() documentation. (transplanted from aaa1204a4426c5412d9c2814e41e0b7066db060c) --- physfs.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/physfs.h b/physfs.h index 1b45cb9..2f42d38 100644 --- a/physfs.h +++ b/physfs.h @@ -897,8 +897,9 @@ __EXPORT__ const char *PHYSFS_getRealDir(const char *filename); * We've got [z.sav]. * We've got [w.sav].\endverbatim * - * Feel free to sort the list however you like. We only promise there will - * be no duplicates, but not what order the final list will come back in. + * Feel free to sort the list however you like. However, the returned data + * will always contain no duplicates, and will be always sorted in alphabetic + * (rather: Unicode) order for you. * * Don't forget to call PHYSFS_freeList() with the return value from this * function when you are done with it.