From 764c76c84a9e11d25980628a491ab5b9cca68e2a Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 24 Sep 2015 12:22:19 +0200 Subject: [PATCH] (retro_stat.c) Add PSP ifdef --- libretro-common/file/retro_stat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libretro-common/file/retro_stat.c b/libretro-common/file/retro_stat.c index 2698c9a048..8e3fec01f2 100644 --- a/libretro-common/file/retro_stat.c +++ b/libretro-common/file/retro_stat.c @@ -168,7 +168,7 @@ bool mkdir_norecurse(const char *dir) ret = mkdir(dir, 0750); #endif /* Don't treat this as an error. */ -#if defined(VITA) +#if defined(VITA) || defined(PSP) if ((ret == SCE_ERROR_ERRNO_EEXIST) && path_is_directory(dir)) ret = 0; #else