1.5: Fuckin' UE5... #38

Manually merged
williamjcm merged 126 commits from one-point-five into master 2024-07-22 11:06:13 +02:00
Showing only changes of commit f68dee939e - Show all commits

View file

@ -227,9 +227,7 @@ File::loadData() {
_customFormatData = Containers::Array<CustomFormatDataEntry>{custom_format_data_size};
for(std::uint32_t i = 0; i < custom_format_data_size; i++) {
CustomFormatDataEntry entry;
for(auto& entry : _customFormatData) {
if(!reader.readStaticArray(entry.id) ||
!reader.readInt32(entry.value))
{
@ -237,8 +235,6 @@ File::loadData() {
LOG_ERROR(_lastError);
return;
}
_customFormatData[i] = std::move(entry);
}
if(!reader.readUEString(_saveType)) {