Skip to content

Commit ab4e74f

Browse files
committed
raysan5/raylib@ba046a5 fixes upstream now all green for doc tests
1 parent 3d3911b commit ab4e74f

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

raylib/src/core/data.rs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,6 @@ pub fn compress_data(data: &[u8]) -> Result<DataBuf<[u8]>, CompressionError> {
4040
/// let data = decompress_data(input).unwrap();
4141
/// assert_eq!(data.as_ref(), expected);
4242
/// ```
43-
/// ^^^Test executable failed (exit status: 102).
44-
/// TODO: Perhaps related to upstream issue introduced here:
45-
/// https://github.com/raysan5/raylib/commit/1777da9056ac84bb7410392e103c6a0964570d67
46-
/// Ray forgot to sinflate the data0 instead of data (NULL)... in the update, unsure if it was reviewed,
47-
/// updated on discord, but keeping note here to fix before any PR merge
48-
4943
pub fn decompress_data(data: &[u8]) -> Result<DataBuf<[u8]>, CompressionError> {
5044
#[cfg(debug_assertions)]
5145
println!("{:?}", data.len());

0 commit comments

Comments
 (0)