mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-28 13:28:01 +03:00
sys_game_board_storage_read(): Add more known code & Improve byte casting
This commit is contained in:
parent
6ff6a4989a
commit
c996be321c
1 changed files with 2 additions and 2 deletions
|
@ -17,11 +17,11 @@ error_code _sys_game_board_storage_read(vm::ptr<u8> buffer, u8 code)
|
||||||
}
|
}
|
||||||
|
|
||||||
be_t<u64> psid[2] = { +g_cfg.sys.console_psid_high, +g_cfg.sys.console_psid_low };
|
be_t<u64> psid[2] = { +g_cfg.sys.console_psid_high, +g_cfg.sys.console_psid_low };
|
||||||
u8 psid_bytes[16];
|
u8* psid_bytes = reinterpret_cast<u8*>(psid);
|
||||||
memcpy(psid_bytes, psid, 16);
|
|
||||||
|
|
||||||
switch (code)
|
switch (code)
|
||||||
{
|
{
|
||||||
|
case 0xC0:
|
||||||
case 0xF0:
|
case 0xF0:
|
||||||
{
|
{
|
||||||
u8 response[16] = { 0x01, 0xFC, 0x43, 0x50, 0xA7, 0x9B, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
|
u8 response[16] = { 0x01, 0xFC, 0x43, 0x50, 0xA7, 0x9B, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue