From 42b6fdf97adc93f19c5b3504995aa6739cdb4cf4 Mon Sep 17 00:00:00 2001 From: Toad King Date: Wed, 22 Aug 2012 17:39:55 -0400 Subject: [PATCH] (GX) fix CORE renaming --- console/rarch_console_libretro_mgmt.c | 3 +-- gx/frontend/main.c | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/console/rarch_console_libretro_mgmt.c b/console/rarch_console_libretro_mgmt.c index 461caa5d37..16c94be61e 100644 --- a/console/rarch_console_libretro_mgmt.c +++ b/console/rarch_console_libretro_mgmt.c @@ -96,10 +96,9 @@ bool rarch_configure_libretro_core(const char *core_exe_path, const char *tmp_pa } else { - RARCH_ERR("Failed to rename CORE executable.\n"); RARCH_WARN("CORE executable was not found, or some other error occurred. Will attempt to load libretro core path from config file.\n"); - find_libretro_file = true; + find_libretro_file = true; } } diff --git a/gx/frontend/main.c b/gx/frontend/main.c index 164629f6d7..6bae167548 100644 --- a/gx/frontend/main.c +++ b/gx/frontend/main.c @@ -404,7 +404,7 @@ int main(void) char tmp_path[PATH_MAX]; const char *extension = default_paths.executable_extension; - snprintf(tmp_path, sizeof(tmp_path), default_paths.core_dir); + snprintf(tmp_path, sizeof(tmp_path), "%s/", default_paths.core_dir); const char *path_prefix = tmp_path; char full_path[1024];