mirror of
https://github.com/libretro/RetroArch
synced 2025-03-17 10:21:26 +00:00
Fix error in path_get_size
This commit is contained in:
parent
5a97738f3e
commit
f93ae772f3
@ -141,8 +141,8 @@ void path_vfs_init(const struct retro_vfs_interface_info* vfs_info)
|
||||
static int path_stat(const char *path, int32_t *size)
|
||||
{
|
||||
if (path_stat_cb != NULL)
|
||||
return path_stat_cb(path, NULL);
|
||||
return retro_vfs_stat_impl(path, NULL);
|
||||
return path_stat_cb(path, size);
|
||||
return retro_vfs_stat_impl(path, size);
|
||||
}
|
||||
|
||||
static int path_mkdir_norecurse(const char *dir)
|
||||
|
Loading…
x
Reference in New Issue
Block a user