mirror of
https://github.com/libretro/ppsspp.git
synced 2025-02-21 17:30:46 +00:00
fix typo,add sceUsbGpsGetState() function
This commit is contained in:
parent
88124952a2
commit
a1f922baff
@ -26,8 +26,13 @@ enum UsbStatus {
|
||||
GPS_STATE_ON = 3,
|
||||
};
|
||||
|
||||
int sceUsbGpsGetState(u32 stateAddr) {
|
||||
ERROR_LOG(HLE, "UNIMPL sceUsbGpsGetData(%08x)", stateAddr);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int sceUsbGpsOpen() {
|
||||
ERROR_LOG(HLE, "sceUsbGpsOpen");
|
||||
ERROR_LOG(HLE, "UNIMPL sceUsbGpsOpen");
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -39,10 +44,10 @@ const HLEFunction sceUsbGps[] =
|
||||
{0x63D1F89D, 0, "sceUsbGpsResetInitialPosition"},
|
||||
{0x69E4AAA8, 0, "sceUsbGpsSaveInitData"},
|
||||
{0x6EED4811, 0, "sceUsbGpsClose"},
|
||||
{0x7C16AC3A, 0, "sceUsbGpsGetState"},
|
||||
{0x7C16AC3A, WrapI_U<sceUsbGpsGetState>, "sceUsbGpsGetState"},
|
||||
{0x934EC2B2, 0, "sceUsbGpsGetData"},
|
||||
{0x9D8F99E8, 0, "sceUsbGpsSetPowerSaveMode"},
|
||||
{0x9F267D34, WrapI_V<sceUsbGpsOpen>, "sceUsbGpsOpen" },
|
||||
{0x9F267D34, WrapI_V<sceUsbGpsOpen>, "sceUsbGpsOpen"},
|
||||
{0xA259CD67, 0, "sceUsbGpsReset"},
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user