danielkrupinski / GOESP

Cross-platform streamproof ESP hack for Counter-Strike: Global Offensive, written in modern C++. Rendering and GUI powered by Dear ImGui + FreeType.
MIT License
433 stars 74 forks source link

Question: Why remove "module caching" on Linux? #59

Closed mutexsync closed 4 years ago

mutexsync commented 4 years ago

I was going to implement module caching in Linux (not iterating with dl_iterate_phdr each call) but then I saw the file commit history, and noticed that you already did it once, but removed.

Any specific reason?

danielkrupinski commented 4 years ago

No need to as we initialize Memory object only once.

mutexsync commented 4 years ago

Oh, makes sense. Thanks!