mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-09-11 08:36:38 -04:00
Vita: Try to fix networking, take 3
This commit is contained in:
parent
0532bef3b3
commit
19038d55a4
@ -83,7 +83,8 @@ And also runs on:
|
|||||||
* PS Vita - unfinished, rendering issues (can [download from here](https://www.classicube.net/download/vita), **untested on real hardware**)
|
* PS Vita - unfinished, rendering issues (can [download from here](https://www.classicube.net/download/vita), **untested on real hardware**)
|
||||||
* Xbox - unfinished, major rendering issues (can [download from here](https://www.classicube.net/download/xbox), **untested on real hardware**)
|
* Xbox - unfinished, major rendering issues (can [download from here](https://www.classicube.net/download/xbox), **untested on real hardware**)
|
||||||
* PS3 - unfinished, rendering issues (can [download from here](https://www.classicube.net/download/ps3), **untested on real hardware**)
|
* PS3 - unfinished, rendering issues (can [download from here](https://www.classicube.net/download/ps3), **untested on real hardware**)
|
||||||
* Nintendo 64 - unfinished, major rendering issues
|
* Nintendo 64 - unfinished, moderate rendering issues
|
||||||
|
* PS2 - unfinished, major rendering and stability issues
|
||||||
|
|
||||||
# Compiling
|
# Compiling
|
||||||
|
|
||||||
@ -359,6 +360,8 @@ Further information (e.g. style) for ClassiCube's source code can be found in th
|
|||||||
* [libdragon](https://github.com/DragonMinded/libdragon) - Backend for Nintendo 64
|
* [libdragon](https://github.com/DragonMinded/libdragon) - Backend for Nintendo 64
|
||||||
* [cen64](https://github.com/n64dev/cen64) - Emulator used to test Nintendo 64 port
|
* [cen64](https://github.com/n64dev/cen64) - Emulator used to test Nintendo 64 port
|
||||||
* [ares](https://github.com/ares-emulator/ares) - Emulator used to test Nintendo 64 port
|
* [ares](https://github.com/ares-emulator/ares) - Emulator used to test Nintendo 64 port
|
||||||
|
* [ps2sdk](https://github.com/DragonMinded/libdragon) - Backend for Nintendo 64
|
||||||
|
* [PCSX2](https://github.com/ps2dev/ps2sdk) - Emulator used to test PS2 port
|
||||||
|
|
||||||
|
|
||||||
## Sound Credits
|
## Sound Credits
|
||||||
|
@ -289,7 +289,7 @@ static int ParseHost(union SocketAddress* addr, const char* host) {
|
|||||||
int rid = sceNetResolverCreate("CC resolver", NULL, 0);
|
int rid = sceNetResolverCreate("CC resolver", NULL, 0);
|
||||||
if (rid < 0) return ERR_INVALID_ARGUMENT;
|
if (rid < 0) return ERR_INVALID_ARGUMENT;
|
||||||
|
|
||||||
int ret = sceNetResolverStartNtoa(rid, host, &addr->v4.sin_addr, 1 /* timeout */, 5 /* retries */, 0 /* flags */);
|
int ret = sceNetResolverStartNtoa(rid, host, &addr->v4.sin_addr, 0, 0, 0);
|
||||||
sceNetResolverDestroy(rid);
|
sceNetResolverDestroy(rid);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user