mirror of
https://github.com/libretro/RetroArch
synced 2025-03-01 07:13:35 +00:00
Cleanups - respect 80-char width
This commit is contained in:
parent
77a21ba283
commit
f6ca836e25
@ -266,15 +266,18 @@ static void load_dynamic_core(void)
|
|||||||
{
|
{
|
||||||
/* Try to verify that -lretro was not linked in from other modules
|
/* Try to verify that -lretro was not linked in from other modules
|
||||||
* since loading it dynamically and with -l will fail hard. */
|
* since loading it dynamically and with -l will fail hard. */
|
||||||
RARCH_ERR("Serious problem. RetroArch wants to load libretro cores dyamically, but it is already linked.\n");
|
RARCH_ERR("Serious problem. RetroArch wants to load libretro cores"
|
||||||
RARCH_ERR("This could happen if other modules RetroArch depends on link against libretro directly.\n");
|
"dyamically, but it is already linked.\n");
|
||||||
|
RARCH_ERR("This could happen if other modules RetroArch depends on "
|
||||||
|
"link against libretro directly.\n");
|
||||||
RARCH_ERR("Proceeding could cause a crash. Aborting ...\n");
|
RARCH_ERR("Proceeding could cause a crash. Aborting ...\n");
|
||||||
retro_fail(1, "init_libretro_sym()");
|
retro_fail(1, "init_libretro_sym()");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!*settings->libretro)
|
if (!*settings->libretro)
|
||||||
{
|
{
|
||||||
RARCH_ERR("RetroArch is built for dynamic libretro cores, but libretro_path is not set. Cannot continue.\n");
|
RARCH_ERR("RetroArch is built for dynamic libretro cores, but "
|
||||||
|
"libretro_path is not set. Cannot continue.\n");
|
||||||
retro_fail(1, "init_libretro_sym()");
|
retro_fail(1, "init_libretro_sym()");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user