rpcsx/rpcs3/Emu/Io/interception.h
Nekotekina eb66302907 atomic.hpp: replace std::atomic with atomic_t
Dual dependency is nothing good.
2020-12-07 17:13:12 +03:00

9 lines
113 B
C++

#pragma once
namespace input
{
extern atomic_t<bool> g_intercepted;
void SetIntercepted(bool intercepted);
}