We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9df9d8 commit d3b2f0aCopy full SHA for d3b2f0a
1 file changed
libretro-common/formats/libchdr/libchdr_chd.c
@@ -585,19 +585,6 @@ static INLINE uint32_t get_bigendian_uint32_t(const uint8_t *base)
585
return (base[0] << 24) | (base[1] << 16) | (base[2] << 8) | base[3];
586
}
587
588
-/*-------------------------------------------------
589
- put_bigendian_uint32_t - write a uint32_t to
590
- the data stream in bigendian order
591
--------------------------------------------------*/
592
-
593
-static INLINE void put_bigendian_uint32_t(uint8_t *base, uint32_t value)
594
-{
595
- base[0] = value >> 24;
596
- base[1] = value >> 16;
597
- base[2] = value >> 8;
598
- base[3] = value;
599
-}
600
601
/*-------------------------------------------------
602
put_bigendian_uint24 - write a UINT24 to
603
the data stream in bigendian order
0 commit comments