mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-10 23:08:05 -05:00
chore: fix linux build
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
#include "AssetLoaderXModel.h"
|
||||
|
||||
#include "Game/T6/XModel/JsonXModelLoader.h"
|
||||
#include "Game/T6/T6.h"
|
||||
#include "Game/T6/XModel/JsonXModelLoader.h"
|
||||
#include "Pool/GlobalAssetPool.h"
|
||||
|
||||
#include <cstring>
|
||||
|
@ -6,6 +6,7 @@
|
||||
#include <format>
|
||||
#include <iostream>
|
||||
#include <nlohmann/json.hpp>
|
||||
#include <vector>
|
||||
|
||||
using namespace nlohmann;
|
||||
using namespace T6;
|
||||
@ -109,7 +110,7 @@ namespace T6
|
||||
std::set<XAssetInfoGeneric*> dependenciesSet;
|
||||
const JsonLoader loader(stream, *memory, *manager, dependenciesSet);
|
||||
|
||||
dependencies.assign_range(dependenciesSet);
|
||||
dependencies.assign(dependenciesSet.cbegin(), dependenciesSet.cend());
|
||||
|
||||
return loader.Load(xmodel);
|
||||
}
|
||||
|
Reference in New Issue
Block a user