Skip to content

Commit d3b2f0a

Browse files
committed
Cleanup
1 parent a9df9d8 commit d3b2f0a

1 file changed

Lines changed: 0 additions & 13 deletions

File tree

libretro-common/formats/libchdr/libchdr_chd.c

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -585,19 +585,6 @@ static INLINE uint32_t get_bigendian_uint32_t(const uint8_t *base)
585585
return (base[0] << 24) | (base[1] << 16) | (base[2] << 8) | base[3];
586586
}
587587

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-
601588
/*-------------------------------------------------
602589
put_bigendian_uint24 - write a UINT24 to
603590
the data stream in bigendian order

0 commit comments

Comments
 (0)