mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-14 14:28:47 +00:00
Do not look for libretro.so by default.
This commit is contained in:
parent
7e850cd265
commit
8e85275418
10
dynamic.c
10
dynamic.c
@ -156,14 +156,8 @@ void init_libretro_sym(void)
|
||||
|
||||
if (!*g_settings.libretro)
|
||||
{
|
||||
#if defined(_WIN32)
|
||||
const char *libretro_path = "retro.dll";
|
||||
#elif defined(__APPLE__)
|
||||
const char *libretro_path = "libretro.dylib";
|
||||
#else
|
||||
const char *libretro_path = "libretro.so";
|
||||
#endif
|
||||
strlcpy(g_settings.libretro, libretro_path, sizeof(g_settings.libretro));
|
||||
RARCH_ERR("RetroArch is built for dynamic libretro, but libretro_path is not set. Cannot continue.\n");
|
||||
rarch_fail(1, "init_libretro_sym()");
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -8,7 +8,8 @@
|
||||
# This will be overridden by explicit command line options.
|
||||
# savestate_directory =
|
||||
|
||||
# If enabled, load libretro from a dynamic location.
|
||||
# Load libretro from a dynamic location for dynamically built RetroArch.
|
||||
# This option is mandatory.
|
||||
# libretro_path = "/path/to/libretro.so"
|
||||
|
||||
# Environment variables internally in RetroArch.
|
||||
|
Loading…
Reference in New Issue
Block a user