Take out HAVE_CDROM include ut of vfs/vfs_implementation.h

This commit is contained in:
twinaphex 2019-07-10 22:53:07 +02:00
parent 980de11974
commit 84bf51acee
4 changed files with 14 additions and 4 deletions

View File

@ -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);

View File

@ -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

View File

@ -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"

View File

@ -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>