mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-07-22 10:04:39 +00:00
Rename fields not compiling with gcc
This commit is contained in:
parent
b5e1940964
commit
26687060cd
@ -883,7 +883,7 @@ int PS4_SYSV_ABI sceNetEpollWait(OrbisNetId epollid, OrbisNetEpollEvent* events,
|
|||||||
.data = it->second.data,
|
.data = it->second.data,
|
||||||
};
|
};
|
||||||
LOG_INFO(Lib_Net, "event[{}] = ( .events = {:#x}, .ident = {}, .data = {:#x} )", i,
|
LOG_INFO(Lib_Net, "event[{}] = ( .events = {:#x}, .ident = {}, .data = {:#x} )", i,
|
||||||
events[i].events, events[i].ident, events[i].data.u64);
|
events[i].events, events[i].ident, events[i].data.data_u64);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
@ -141,9 +141,9 @@ struct OrbisNetMsghdr {
|
|||||||
|
|
||||||
union OrbisNetEpollData {
|
union OrbisNetEpollData {
|
||||||
void* ptr;
|
void* ptr;
|
||||||
u32 u32;
|
u32 data_u32;
|
||||||
int fd;
|
int fd;
|
||||||
u64 u64;
|
u64 data_u64;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct OrbisNetEpollEvent {
|
struct OrbisNetEpollEvent {
|
||||||
|
Loading…
Reference in New Issue
Block a user