mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-27 07:20:49 +00:00
Fix save status
This commit is contained in:
parent
dbae0423d6
commit
6509468d47
@ -176,10 +176,24 @@ const HLEFunction sceUsbCam[] =
|
||||
{ 0xF8847F60, 0, "sceUsbCamPollReadMicEnd" },
|
||||
};
|
||||
|
||||
const HLEFunction sceG729[] =
|
||||
{
|
||||
{ 0x13f1028a, 0, "sceUsbstorBootSetCapacity" },
|
||||
{ 0x17c11696, 0, "sceUsbstorBootSetLoadAddr" },
|
||||
{ 0x3489d1f3, 0, "sceUsbstorBootGetDataSize" },
|
||||
{ 0x5a409d1b, 0, "sceUsbstorBootSetStatus" },
|
||||
{ 0x594BBF95, 0, "sceUsbstorBootRegisterNotify" },
|
||||
{ 0x594BBF95, 0, "sceUsbstorBootUnregisterNotify" },
|
||||
};
|
||||
|
||||
void Register_sceUsb()
|
||||
{
|
||||
RegisterModule("sceUsbstor", ARRAY_SIZE(sceUsbstor), sceUsbstor);
|
||||
RegisterModule("sceUsbstorBoot", ARRAY_SIZE(sceUsbstorBoot), sceUsbstorBoot);
|
||||
RegisterModule("sceUsb", ARRAY_SIZE(sceUsb), sceUsb);
|
||||
}
|
||||
|
||||
void Register_sceUsbCam()
|
||||
{
|
||||
RegisterModule("sceUsbCam", ARRAY_SIZE(sceUsbCam), sceUsbCam);
|
||||
}
|
||||
|
@ -21,3 +21,5 @@ void Register_sceUsb();
|
||||
|
||||
void __UsbInit();
|
||||
void __UsbDoState(PointerWrap &p);
|
||||
|
||||
void Register_sceUsbCam();
|
||||
|
Loading…
Reference in New Issue
Block a user