1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-05 09:48:42 +00:00

net_http - 3ds build fix (#14900)

This commit is contained in:
retroNUC 2023-01-25 06:15:17 +00:00 committed by GitHub
parent 960204b5eb
commit afe3bf72bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -448,7 +448,7 @@ static int net_http_new_socket(struct http_connection_t *conn)
/* Temp fix, don't use new timeout/poll code for cheevos http requests */
bool timeout = true;
#ifdef __WIN32
if (!strcmp(conn->domain, "retroachievements.org\0"))
if (!strcmp(conn->domain, "retroachievements.org"))
timeout = false;
#endif