We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a2d40b commit 929c783Copy full SHA for 929c783
1 file changed
libretro-common/vfs/vfs_implementation.c
@@ -1446,11 +1446,11 @@ bool retro_vfs_dirent_is_dir_impl(libretro_vfs_implementation_dir *rdir)
1446
1447
int retro_vfs_closedir_impl(libretro_vfs_implementation_dir *rdir)
1448
{
1449
+ int ret = 0;
1450
+
1451
if (!rdir)
1452
return -1;
1453
- int ret = 0;
-
1454
#if defined(ANDROID) && defined(HAVE_SAF)
1455
if (rdir->saf_directory != NULL)
1456
ret = retro_vfs_closedir_saf(rdir->saf_directory);
0 commit comments