Take out HAVE_CDROM include ut of vfs/vfs_implementation.h
This commit is contained in:
parent
980de11974
commit
84bf51acee
|
@ -29,10 +29,6 @@
|
|||
#include <retro_environment.h>
|
||||
#include <vfs/vfs.h>
|
||||
|
||||
#ifdef HAVE_CDROM
|
||||
#include <vfs/vfs_implementation_cdrom.h>
|
||||
#endif
|
||||
|
||||
RETRO_BEGIN_DECLS
|
||||
|
||||
libretro_vfs_implementation_file *retro_vfs_file_open_impl(const char *path, unsigned mode, unsigned hints);
|
||||
|
|
|
@ -26,6 +26,11 @@
|
|||
#include "../../config.h"
|
||||
#endif
|
||||
|
||||
#include <vfs/vfs_implementation.h>
|
||||
#ifdef HAVE_CDROM
|
||||
#include <vfs/vfs_implementation_cdrom.h>
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_DISCORD
|
||||
#include "../../discord/discord.h"
|
||||
#endif
|
||||
|
|
|
@ -36,6 +36,10 @@
|
|||
#include "../config.h"
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_CDROM
|
||||
#include <vfs/vfs_implementation_cdrom.h>
|
||||
#endif
|
||||
|
||||
#include "../config.def.h"
|
||||
#include "../config.def.keybinds.h"
|
||||
|
||||
|
|
|
@ -57,6 +57,11 @@
|
|||
#include <file/archive_file.h>
|
||||
#include <string/stdstring.h>
|
||||
|
||||
#include <vfs/vfs_implementation.h>
|
||||
#ifdef HAVE_CDROM
|
||||
#include <vfs/vfs_implementation_cdrom.h>
|
||||
#endif
|
||||
|
||||
#include <retro_miscellaneous.h>
|
||||
#include <streams/file_stream.h>
|
||||
#include <retro_assert.h>
|
||||
|
|
Loading…
Reference in New Issue