diff options
author | Liam <[email protected]> | 2022-06-07 17:02:29 -0400 |
---|---|---|
committer | Liam <[email protected]> | 2022-06-13 20:09:00 -0400 |
commit | 084d7d6b014443be7625fb9d8f1ddd309a22f6f4 (patch) | |
tree | ea48c7b1d22a0b282846ba28a9b62c988e38bd29 /src/core/tools | |
parent | bd3bfe411d8319b8300037a78c152ad7dab839f3 (diff) | |
download | yuzu-mainline-084d7d6b014443be7625fb9d8f1ddd309a22f6f4.tar.gz yuzu-mainline-084d7d6b014443be7625fb9d8f1ddd309a22f6f4.zip |
common: Change semantics of UNREACHABLE to unconditionally crash
Diffstat (limited to 'src/core/tools')
-rw-r--r-- | src/core/tools/freezer.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/tools/freezer.cpp b/src/core/tools/freezer.cpp index 7a0b73eca..5cc99fbe4 100644 --- a/src/core/tools/freezer.cpp +++ b/src/core/tools/freezer.cpp @@ -25,7 +25,6 @@ u64 MemoryReadWidth(Core::Memory::Memory& memory, u32 width, VAddr addr) { return memory.Read64(addr); default: UNREACHABLE(); - return 0; } } |