mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-07 10:48:43 +00:00
COMMON: Fix return type of one READ_BE_UINT64 implementation.
This makes all unit tests pass for my on amd64 again. Thanks clone2727.
This commit is contained in:
parent
ba228f2bea
commit
e2e61184c6
@ -476,7 +476,7 @@
|
||||
WRITE_UINT32(ptr, SWAP_BYTES_32(value));
|
||||
}
|
||||
#ifdef HAVE_INT64
|
||||
inline uint32 READ_BE_UINT64(const void *ptr) {
|
||||
inline uint64 READ_BE_UINT64(const void *ptr) {
|
||||
return SWAP_BYTES_64(READ_UINT64(ptr));
|
||||
}
|
||||
inline void WRITE_BE_UINT64(void *ptr, uint64 value) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user