From ef669533c896b53d92c897e05ef58f22d9741dd2 Mon Sep 17 00:00:00 2001 From: Brad Parker Date: Thu, 4 Jul 2019 14:04:25 -0400 Subject: [PATCH] cdrom: windows buildfix --- libretro-common/cdrom/cdrom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libretro-common/cdrom/cdrom.c b/libretro-common/cdrom/cdrom.c index 46059e60d9..7af7af5fff 100644 --- a/libretro-common/cdrom/cdrom.c +++ b/libretro-common/cdrom/cdrom.c @@ -1197,7 +1197,7 @@ struct string_list* cdrom_get_available_drives(void) char drive_model[32] = {0}; char drive_string[64] = {0}; union string_list_elem_attr attr = {0}; - libretro_vfs_implementation_file *stream = filestream_open(cdrom_path, RETRO_VFS_FILE_ACCESS_READ, 0); + RFILE *file = filestream_open(cdrom_path, RETRO_VFS_FILE_ACCESS_READ, 0); const libretro_vfs_implementation_file *stream; bool is_cdrom = false;