mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-13 02:08:49 +12:00
SPU Cleanup
SPURecompiler improved Old SPU decoder removed SPU Interpreters merged
This commit is contained in:
parent
58181c5c17
commit
817fec9684
30 changed files with 6117 additions and 8261 deletions
|
@ -330,6 +330,14 @@ namespace loader
|
|||
continue;
|
||||
}
|
||||
|
||||
if (Ini.LoadLibLv2.GetValue())
|
||||
{
|
||||
if (module->name != "liblv2.sprx")
|
||||
{
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
elf64 sprx_handler;
|
||||
|
||||
vfsFile fsprx(lle_dir.GetPath() + "/" + module->name);
|
||||
|
@ -340,19 +348,19 @@ namespace loader
|
|||
|
||||
if (sprx_handler.is_sprx())
|
||||
{
|
||||
IniEntry<bool> load_lib;
|
||||
load_lib.Init(sprx_handler.sprx_get_module_name(), "LLE");
|
||||
if (!Ini.LoadLibLv2.GetValue())
|
||||
{
|
||||
IniEntry<bool> load_lib;
|
||||
load_lib.Init(sprx_handler.sprx_get_module_name(), "LLE");
|
||||
|
||||
if (!load_lib.LoadValue(false))
|
||||
{
|
||||
LOG_WARNING(LOADER, "Skipped LLE library '%s'", sprx_handler.sprx_get_module_name().c_str());
|
||||
continue;
|
||||
}
|
||||
else
|
||||
{
|
||||
LOG_WARNING(LOADER, "Loading LLE library '%s'", sprx_handler.sprx_get_module_name().c_str());
|
||||
if (!load_lib.LoadValue(false))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
LOG_WARNING(LOADER, "Loading LLE library '%s'", sprx_handler.sprx_get_module_name().c_str());
|
||||
|
||||
sprx_info info;
|
||||
sprx_handler.load_sprx(info);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue