diff options
| author | octorock <79596758+octorock@users.noreply.github.com> | 2022-12-06 17:48:11 +0100 |
|---|---|---|
| committer | octorock <79596758+octorock@users.noreply.github.com> | 2022-12-06 17:51:02 +0100 |
| commit | 017eb5a65efe06ab338f7d6a3bdd1188fcca6c3e (patch) | |
| tree | ef28bf6e5a83abe6ca7964ac1806b07b57d67297 /tools/src/asset_processor/main.cpp | |
| parent | 80b66166f57ddca9dec06fbec6e621b1771e3cca (diff) | |
Fix some tilesets
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 db472e6e..195c6939 100644 --- a/tools/src/asset_processor/main.cpp +++ b/tools/src/asset_processor/main.cpp @@ -279,7 +279,7 @@ std::unique_ptr<BaseAsset> getAssetHandlerByType(const std::filesystem::path& pa assetHandler = std::make_unique<GfxAsset>(path, start, size, asset); } else if (type == "palette") { assetHandler = std::make_unique<PaletteAsset>(path, start, size, asset); - } else if (type == "map_gfx" || type == "map_layer1" || type == "map_layer2" || type == "metatiles_tile_types1" || + } else if (type == "map_layer1" || type == "map_layer2" || type == "metatiles_tile_types1" || type == "metatiles_tile_types2" || type == "metatiles_tileset1" || type == "metatiles_tileset2" || type == "map_mapping1" || type == "map_mapping2" || type == "tileset_mapping3" || type == "map_collision") { |
