Add HAVE_LIBRETRODB

This commit is contained in:
twinaphex 2015-01-30 09:24:48 +01:00
parent 7cb18cbdab
commit 96f106d992
2 changed files with 6 additions and 1 deletions

View File

@ -440,6 +440,7 @@
"-DHAVE_GLUI",
"-DHAVE_HID",
"-DHAVE_XMB",
"-DHAVE_LIBRETRODB",
);
PRODUCT_NAME = "RetroArch 10.6";
SDKROOT = macosx;
@ -511,6 +512,7 @@
"-DHAVE_GLUI",
"-DHAVE_HID",
"-DHAVE_XMB",
"-DHAVE_LIBRETRODB",
);
PRODUCT_NAME = "RetroArch 10.6";
SDKROOT = macosx;
@ -625,6 +627,7 @@
"-DHAVE_GLUI",
"-DHAVE_HID",
"-DHAVE_XMB",
"-DHAVE_LIBRETRODB",
);
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = macosx;
@ -696,6 +699,7 @@
"-DHAVE_GLUI",
"-DHAVE_HID",
"-DHAVE_XMB",
"-DHAVE_LIBRETRODB",
);
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = macosx;

View File

@ -575,7 +575,8 @@ static int action_ok_core_load_deferred(const char *path,
if (!driver.menu)
return -1;
strlcpy(g_settings.libretro, path, sizeof(g_settings.libretro));
if (path)
strlcpy(g_settings.libretro, path, sizeof(g_settings.libretro));
strlcpy(g_extern.fullpath, driver.menu->deferred_path,
sizeof(g_extern.fullpath));