WopsS / RED4ext.SDK

A library to create mods for REDengine 4 (Cyberpunk 2077), independently of RED4ext.
MIT License
100 stars 33 forks source link

added SpinLock and InsertOrAssign fixes #32

Closed 0xSombra closed 3 years ago

0xSombra commented 3 years ago

https://github.com/WopsS/RED4ext.SDK/blob/1e5a843715e8e61ec6b8989d5bbe8ede8b648430/include/RED4ext/SortedArray.hpp#L61-L69 'SortedUniqueArray' had an issue. 'aItem' would be in an "unspecified" state because 'Emplace' has moved it Fixed by changing it to this: https://github.com/WopsS/RED4ext.SDK/blob/1737fe23493358e81d74514dc38861e082e8dfb9/include/RED4ext/SortedArray.hpp#L56-L59 https://github.com/WopsS/RED4ext.SDK/blob/1737fe23493358e81d74514dc38861e082e8dfb9/include/RED4ext/SortedArray.hpp#L182-L203

WopsS commented 3 years ago

Thanks!