More CGameArea::StartStreamingMainArea

Former-commit-id: 977372a3cd
This commit is contained in:
Henrique Gemignani Passos Lima
2023-07-31 16:35:09 +03:00
parent 61cf94d072
commit 7b4c11136f
5 changed files with 54 additions and 20 deletions

View File

@@ -30,8 +30,17 @@ public:
x0_ptr = nullptr;
return ptr;
}
// This is certainly not real, but handy to force not-inline
single_ptr& Set(T* ptr);
};
template < typename T >
single_ptr< T >& single_ptr< T >::Set(T* ptr) {
return *this = ptr;
}
typedef single_ptr< void > unk_singleptr;
CHECK_SIZEOF(unk_singleptr, 0x4);
} // namespace rstl