mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-10 17:01:24 +12:00
13 lines
325 B
C++
13 lines
325 B
C++
#include "stdafx.h"
|
|
#include "Emu/Memory/Memory.h"
|
|
#include "Emu/ARMv7/PSVFuncList.h"
|
|
#include "Emu/ARMv7/PSVObjectList.h"
|
|
#include "sceLibKernel.h"
|
|
#include "psv_event_flag.h"
|
|
|
|
psv_event_flag_t::psv_event_flag_t(const char* name, u32 attr, u32 pattern)
|
|
: attr(attr)
|
|
, pattern(pattern)
|
|
{
|
|
strcpy_trunc(this->name, name);
|
|
}
|