Files
UnleashedRecomp-hedge-dev/UnleashedRecomp/cpu/ppc_context.h
2024-10-07 21:47:00 +03:00

14 lines
195 B
C

#pragma once
inline thread_local PPCContext* gPPCContext;
inline PPCContext* GetPPCContext()
{
return gPPCContext;
}
inline void SetPPCContext(PPCContext& ctx)
{
gPPCContext = &ctx;
}