mirror of
https://github.com/libretro/RetroArch.git
synced 2025-02-26 04:36:56 +00:00
Attempt to fix MSVC
This commit is contained in:
parent
f6937e27f2
commit
2c0c6ae65e
@ -122,7 +122,8 @@ RFILE *filestream_open(const char *path, unsigned mode, unsigned hints)
|
||||
RFILE* output = NULL;
|
||||
|
||||
if (filestream_open_cb != NULL)
|
||||
fp = filestream_open_cb(path, mode, hints);
|
||||
fp = (struct retro_vfs_file_handle*)
|
||||
filestream_open_cb(path, mode, hints);
|
||||
else
|
||||
fp = (struct retro_vfs_file_handle*)
|
||||
retro_vfs_file_open_impl(path, mode, hints);
|
||||
|
Loading…
x
Reference in New Issue
Block a user