mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 06:26:49 +00:00
ARMv7: stubs for other modules, loader improved
This commit is contained in:
parent
1fa301b719
commit
62c8f2ac34
66 changed files with 2616 additions and 59 deletions
19
rpcs3/Emu/ARMv7/Modules/sceScreenShot.cpp
Normal file
19
rpcs3/Emu/ARMv7/Modules/sceScreenShot.cpp
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
#include "stdafx.h"
|
||||
#include "Emu/System.h"
|
||||
#include "Emu/ARMv7/PSVFuncList.h"
|
||||
|
||||
extern psv_log_base sceScreenShot;
|
||||
|
||||
#define REG_FUNC(nid, name) reg_psv_func(nid, &sceScreenShot, #name, name)
|
||||
|
||||
psv_log_base sceScreenShot("SceScreenShot", []()
|
||||
{
|
||||
sceScreenShot.on_load = nullptr;
|
||||
sceScreenShot.on_unload = nullptr;
|
||||
sceScreenShot.on_stop = nullptr;
|
||||
|
||||
//REG_FUNC(0x05DB59C7, sceScreenShotSetParam);
|
||||
//REG_FUNC(0x7061665B, sceScreenShotSetOverlayImage);
|
||||
//REG_FUNC(0x50AE9FF9, sceScreenShotDisable);
|
||||
//REG_FUNC(0x76E674D1, sceScreenShotEnable);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue