mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 00:11:24 +12:00
Include cleaning
This commit is contained in:
parent
6f0531b3f7
commit
50b5d72bb2
31 changed files with 291 additions and 216 deletions
|
@ -13,8 +13,6 @@
|
|||
#include "Emu/FS/vfsDeviceLocalFile.h"
|
||||
#include "Emu/DbgCommand.h"
|
||||
|
||||
#include "Emu/CPU/CPUThreadManager.h" //gui dependency
|
||||
|
||||
#include "Loader/PSF.h"
|
||||
|
||||
#include "../Crypto/unself.h"
|
||||
|
@ -514,3 +512,15 @@ void Emulator::LoadPoints(const std::string& path)
|
|||
}
|
||||
|
||||
Emulator Emu;
|
||||
|
||||
CallAfterCbType CallAfterCallback = nullptr;
|
||||
|
||||
void CallAfter(std::function<void()> func)
|
||||
{
|
||||
CallAfterCallback(func);
|
||||
}
|
||||
|
||||
void SetCallAfterCallback(CallAfterCbType cb)
|
||||
{
|
||||
CallAfterCallback = cb;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue