summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBytesGalore <3903215+BytesGalore@users.noreply.github.com>2022-03-06 11:38:18 +0100
committerGitHub <noreply@github.com>2022-03-06 11:38:18 +0100
commit5784aa1064246091d8f17215edbca83e298be139 (patch)
tree6bc5d772b82e69104ddc1655376f9bdf20212735
parentloader: log the type of mismatching file-extension (diff)
parentMerge pull request #7973 from Morph1984/debug-crash (diff)
downloadyuzu-5784aa1064246091d8f17215edbca83e298be139.tar
yuzu-5784aa1064246091d8f17215edbca83e298be139.tar.gz
yuzu-5784aa1064246091d8f17215edbca83e298be139.tar.bz2
yuzu-5784aa1064246091d8f17215edbca83e298be139.tar.lz
yuzu-5784aa1064246091d8f17215edbca83e298be139.tar.xz
yuzu-5784aa1064246091d8f17215edbca83e298be139.tar.zst
yuzu-5784aa1064246091d8f17215edbca83e298be139.zip
-rw-r--r--src/common/host_memory.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/host_memory.cpp b/src/common/host_memory.cpp
index 28949fe5e..c465cfc14 100644
--- a/src/common/host_memory.cpp
+++ b/src/common/host_memory.cpp
@@ -327,8 +327,8 @@ private:
bool IsNiechePlaceholder(size_t virtual_offset, size_t length) const {
const auto it = placeholders.upper_bound({virtual_offset, virtual_offset + length});
if (it != placeholders.end() && it->lower() == virtual_offset + length) {
- const bool is_root = it == placeholders.begin() && virtual_offset == 0;
- return is_root || std::prev(it)->upper() == virtual_offset;
+ return it == placeholders.begin() ? virtual_offset == 0
+ : std::prev(it)->upper() == virtual_offset;
}
return false;
}