summaryrefslogtreecommitdiff
path: root/tools/src/asset_processor/main.cpp
diff options
context:
space:
mode:
authorHenny022p <info@henny022.de>2022-03-20 02:36:32 +0100
committerHenny022p <info@henny022.de>2022-03-20 02:36:32 +0100
commit2bdf0ae7dfeb55f7c1f90b3adceff14ca380e9f1 (patch)
tree4779abb95b00e84899fcb037fad052c2b3402d3b /tools/src/asset_processor/main.cpp
parent8699554eaa3fcfca02257328cee26c7e17d300e2 (diff)
remove obsolete exit_list code from asset_processor
Diffstat (limited to 'tools/src/asset_processor/main.cpp')
-rw-r--r--tools/src/asset_processor/main.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/tools/src/asset_processor/main.cpp b/tools/src/asset_processor/main.cpp
index 1e6df2a0..2e6da1d1 100644
--- a/tools/src/asset_processor/main.cpp
+++ b/tools/src/asset_processor/main.cpp
@@ -1,7 +1,6 @@
#include "main.h"
#include "assets/aif.h"
#include "assets/animation.h"
-#include "assets/exitlist.h"
#include "assets/frameobjlists.h"
#include "assets/gfx.h"
#include "assets/midi.h"
@@ -267,8 +266,6 @@ std::unique_ptr<BaseAsset> getAssetHandlerByType(const std::filesystem::path& pa
assetHandler = std::make_unique<AnimationAsset>(path, start, size, asset);
} else if (type == "sprite_frame") {
assetHandler = std::make_unique<SpriteFrameAsset>(path, start, size, asset);
- } else if (type == "exit_list") {
- assetHandler = std::make_unique<ExitListAsset>(path, start, size, asset);
} else if (type == "frame_obj_lists") {
assetHandler = std::make_unique<FrameObjListsAsset>(path, start, size, asset);
} else if (type == "midi") {