mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-16 19:47:57 -05:00
common: Change semantics of UNREACHABLE to unconditionally crash
This commit is contained in:
@ -141,7 +141,7 @@ public:
|
||||
if (index < DomainHandlerCount()) {
|
||||
domain_handlers[index] = nullptr;
|
||||
} else {
|
||||
UNREACHABLE_MSG("Unexpected handler index {}", index);
|
||||
ASSERT_MSG(false, "Unexpected handler index {}", index);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user