From 876aca8817a515d2ecfe64ef88781b2d7193af5c Mon Sep 17 00:00:00 2001 From: twinaphex Date: Wed, 17 Jul 2019 21:03:38 +0200 Subject: [PATCH] (fopen_utf8.c) Cleanup --- libretro-common/compat/fopen_utf8.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/libretro-common/compat/fopen_utf8.c b/libretro-common/compat/fopen_utf8.c index 52b481e7e7..893afb83ea 100644 --- a/libretro-common/compat/fopen_utf8.c +++ b/libretro-common/compat/fopen_utf8.c @@ -36,9 +36,7 @@ void *fopen_utf8(const char * filename, const char * mode) { -#if defined(_XBOX) - return fopen(filename, mode); -#elif defined(LEGACY_WIN32) +#if defined(LEGACY_WIN32) FILE *ret = NULL; char * filename_local = utf8_to_local_string_alloc(filename);