From c80663f8d8ef966f59acbf1326b1704df8e859a1 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 12 Jul 2012 03:10:59 +0200 Subject: [PATCH] (360/Xbox 1) System environment path fixed - Sega CD games should run now if a BIOS is present in system directory --- libretro/libretro.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libretro/libretro.c b/libretro/libretro.c index 6c3db35..c2f553b 100644 --- a/libretro/libretro.c +++ b/libretro/libretro.c @@ -852,7 +852,7 @@ void retro_init(void) if (environ_cb(RETRO_ENVIRONMENT_GET_SYSTEM_DIRECTORY, &dir) && dir) { #ifdef _XBOX - snprintf(slash, sizeof(slash), "\\"); + snprintf(slash, sizeof(slash), "\0"); #else snprintf(slash, sizeof(slash), "/"); #endif