Merge pull request #5942 from RobLoach/c_converter

Update c_converter with libretro-common vfs changes
This commit is contained in:
Twinaphex 2017-12-21 02:23:24 +01:00 committed by GitHub
commit 05820677db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -12,7 +12,8 @@ CFLAGS = -g -O2 -Wall -DNDEBUG
endif
LIBRETRO_COMMON_C = \
$(LIBRETRO_COMM_DIR)/streams/file_stream.c
$(LIBRETRO_COMM_DIR)/streams/file_stream.c \
$(LIBRETRO_COMM_DIR)/vfs/vfs_implementation.c
C_CONVERTER_C = \
$(LIBRETRODB_DIR)/rmsgpack.c \

View File

@ -32,6 +32,7 @@
#include <retro_assert.h>
#include <string/stdstring.h>
#include <streams/file_stream.h>
#include "libretrodb.h"