SaveState: Split Do() into a separate header.
This commit is contained in:
parent
dd79d33f14
commit
4b4e3432cd
105 changed files with 1630 additions and 1556 deletions
|
@ -16,6 +16,7 @@
|
|||
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
||||
|
||||
#include "Common/ChunkFile.h"
|
||||
#include "Common/ChunkFileDo.h"
|
||||
#include "Core/CoreTiming.h"
|
||||
#include "Core/MemMapHelpers.h"
|
||||
#include "Core/HLE/HLE.h"
|
||||
|
@ -73,8 +74,8 @@ void HLEHelperThread::DoState(PointerWrap &p) {
|
|||
return;
|
||||
}
|
||||
|
||||
p.Do(id_);
|
||||
p.Do(entry_);
|
||||
Do(p, id_);
|
||||
Do(p, entry_);
|
||||
}
|
||||
|
||||
void HLEHelperThread::Start(u32 a0, u32 a1) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue