mirror of
https://github.com/libretro/RetroArch
synced 2025-02-11 15:40:28 +00:00
(PS3) Buildfix
This commit is contained in:
parent
b5ba2ddc7b
commit
91d56bf43f
@ -64,8 +64,8 @@
|
|||||||
#include "../network/net_http_special.h"
|
#include "../network/net_http_special.h"
|
||||||
#include "../tasks/tasks_internal.h"
|
#include "../tasks/tasks_internal.h"
|
||||||
|
|
||||||
#include <rcheevos.h>
|
#include "../deps/rcheevos/include/rcheevos.h"
|
||||||
#include <rurl.h>
|
#include "../deps/rcheevos/include/rurl.h"
|
||||||
|
|
||||||
/* Define this macro to prevent cheevos from being deactivated. */
|
/* Define this macro to prevent cheevos from being deactivated. */
|
||||||
#undef CHEEVOS_DONT_DEACTIVATE
|
#undef CHEEVOS_DONT_DEACTIVATE
|
||||||
|
@ -123,7 +123,7 @@ uint32_t file_crc32(uint32_t crc, const char *path)
|
|||||||
if (nread < 0)
|
if (nread < 0)
|
||||||
goto error;
|
goto error;
|
||||||
|
|
||||||
crc = encoding_crc32(crc, buf, nread);
|
crc = encoding_crc32(crc, buf, (size_t)nread);
|
||||||
if (filestream_eof(file))
|
if (filestream_eof(file))
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user