486c / rosu-memory

Lightweight, cross-platform memory reader for osu! but in rust
23 stars 7 forks source link

perf: avoid Path::join #7

Closed MaxOhn closed 8 months ago

MaxOhn commented 8 months ago

Each Path::join call allocates a new PathBuf so instead we can PathBuf::push.

486c commented 8 months ago

thanks :heart: