PPU/Debugger: Fix op_branch_targets

This commit is contained in:
Eladash 2023-08-08 09:48:12 +03:00 committed by Elad Ashkenazi
parent cdc0441405
commit df24305698
2 changed files with 2 additions and 4 deletions

View file

@ -347,7 +347,7 @@ namespace stx
}
// Check if object is not initialized but shall be initialized first (to use in initializing other objects)
template <typename T>
template <typename T> requires (std::is_constructible_v<T, manual_typemap&> || std::is_default_constructible_v<T>)
void need() noexcept
{
if (!m_init[stx::typeindex<typeinfo, std::decay_t<T>>()])