mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-14 18:58:36 +12:00
atomic.hpp: replace std::atomic with atomic_t
Dual dependency is nothing good.
This commit is contained in:
parent
b16cc618b5
commit
eb66302907
35 changed files with 42 additions and 82 deletions
|
@ -50,7 +50,7 @@ struct trophy_handle_t
|
|||
struct sce_np_trophy_manager
|
||||
{
|
||||
shared_mutex mtx;
|
||||
std::atomic<bool> is_initialized = false;
|
||||
atomic_t<bool> is_initialized = false;
|
||||
|
||||
// Get context + check handle given
|
||||
static std::pair<trophy_context_t*, SceNpTrophyError> get_context_ex(u32 context, u32 handle)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue