mirror of
https://github.com/libretro/RetroArch
synced 2025-01-29 18:32:44 +00:00
Wii buildfix (round 3)
Annoying preprocessor...
This commit is contained in:
parent
423cc50b6d
commit
fed60aaee6
@ -74,7 +74,6 @@
|
||||
#define recv(a,b,c,d) net_recv(a,b,c,d)
|
||||
#define recvfrom(a,b,c,d,e,f) net_recvfrom(a,b,c,d,e,f)
|
||||
#define select(a,b,c,d,e) net_select(a,b,c,d,e)
|
||||
#define poll(a,b,c) net_poll(a,b,c)
|
||||
|
||||
#elif defined(VITA)
|
||||
#include <psp2/net/net.h>
|
||||
|
@ -464,6 +464,8 @@ done:
|
||||
sceNetEpollDestroy(epoll_fd);
|
||||
|
||||
return ret;
|
||||
#elif defined(GEKKO)
|
||||
return net_poll(fds, nfds, timeout);
|
||||
#else
|
||||
return poll(fds, nfds, timeout);
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user