diff options
| author | octorock <79596758+octorock@users.noreply.github.com> | 2022-12-21 23:40:27 +0100 |
|---|---|---|
| committer | octorock <79596758+octorock@users.noreply.github.com> | 2022-12-21 23:40:27 +0100 |
| commit | c28018843601b99907ab79ef3fd9e689b078e384 (patch) | |
| tree | 6314f7b3d36863e0fc9da44e1626fcefc3261848 /tools/src/asset_processor/main.cpp | |
| parent | ec0678872fd29522f2b93a73af8a6196dd0fdbe8 (diff) | |
Fix paths
Diffstat (limited to 'tools/src/asset_processor/main.cpp')
| -rw-r--r-- | tools/src/asset_processor/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/src/asset_processor/main.cpp b/tools/src/asset_processor/main.cpp index 0bc45518..eddce2b0 100644 --- a/tools/src/asset_processor/main.cpp +++ b/tools/src/asset_processor/main.cpp @@ -282,7 +282,7 @@ std::unique_ptr<BaseAsset> getAssetHandlerByType(const std::filesystem::path& pa assetHandler = std::make_unique<PaletteAsset>(path, start, size, asset); } else if (type == "metatilemap" || type == "metatileset_types" || type == "metatileset" || - type == "map_mapping1" || type == "map_mapping2" || type == "tileset_mapping3" || + type == "map_mapping1" || type == "map_mapping2" || type == "map_collision") { assetHandler = std::make_unique<MapAsset>(path, start, size, asset); } else if (type == "dungeon_map") { |
