From a77b47965b221e8fcfb173e9f468ca93ddecdd98 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sat, 9 Apr 2016 00:28:48 +0200 Subject: [PATCH] Fix typo --- src/fceu-memory.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fceu-memory.h b/src/fceu-memory.h index cee2aa9..84a0574 100644 --- a/src/fceu-memory.h +++ b/src/fceu-memory.h @@ -30,7 +30,7 @@ #define FCEU_dwmemset(d, c, n) { int _x; for (_x = n - 4; _x >= 0; _x -= 4) *(uint32*)& (d)[_x] = c; } #if defined(STATE_LIBRETRO) || defined(ENDIAN_LIBRETRO) || defined(GENERAL_LIBRETRO) -#include "drivres/libretro/libretro-common/include/streams/memstream.h" +#include "drivers/libretro/libretro-common/include/streams/memstream.h" #define HAVE_MEMSTREAM #define MEM_TYPE memstream_t