mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-13 11:38:00 -05:00
common: Change semantics of UNREACHABLE to unconditionally crash
This commit is contained in:
@ -71,7 +71,7 @@ void MacroEngine::Execute(u32 method, const std::vector<u32>& parameters) {
|
||||
}
|
||||
}
|
||||
if (!mid_method.has_value()) {
|
||||
UNREACHABLE_MSG("Macro 0x{0:x} was not uploaded", method);
|
||||
ASSERT_MSG(false, "Macro 0x{0:x} was not uploaded", method);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user