Clément Marescaux

Results 5 comments of Clément Marescaux

It looks like you are running it in debug mode. Try compiling and running it with optimizations enabled: `cargo run --release`

For some reason, newage also partially contains some WPF code? This was taken from one of my recent saves (patch 3). ![image](https://github.com/Norbyte/lslib/assets/14006341/619365af-491a-40a5-935e-c987ef8b2c39) Not sure if WPF specifically, but this is...

It's because they are using zstd as a new compression method (compression flag 3). Gotta wait for it to be implemented in lslib :)

Support for the new saves has been merged today. There's just to wait for the next pre-release.

Translated from native to managed, the CRC32 hash computation gives: CRC32 C++ to C# translation ```csharp using System.Runtime.InteropServices; namespace Native; public static class Crc32 { public static uint Compute(ReadOnlySpan input,...