mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-19 09:54:54 +00:00
small fixes , cleanups
This commit is contained in:
parent
9d4149f006
commit
e272b152ed
5 changed files with 9 additions and 20 deletions
|
@ -89,11 +89,11 @@ void load(const std::filesystem::path& path) {
|
|||
}
|
||||
}
|
||||
if (data.contains("LLE")) {
|
||||
auto generalResult = toml::expect<toml::value>(data.at("LLE"));
|
||||
if (generalResult.is_ok()) {
|
||||
auto general = generalResult.unwrap();
|
||||
auto lleResult = toml::expect<toml::value>(data.at("LLE"));
|
||||
if (lleResult.is_ok()) {
|
||||
auto lle = lleResult.unwrap();
|
||||
|
||||
isLibc = toml::find_or<toml::boolean>(general, "libc", true);
|
||||
isLibc = toml::find_or<toml::boolean>(lle, "libc", true);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue