diff --git a/source/common/asset.cpp b/source/common/asset.cpp index acc0fcd..e5fa617 100644 --- a/source/common/asset.cpp +++ b/source/common/asset.cpp @@ -165,12 +165,12 @@ std::string Asset::getTypeName(int type) return "DATA"; break; - case t_room: - return "ROOM"; + case t_animation: + return "ANIMATION"; break; - case t_enemy: - return "ENEMY"; + case t_palette: + return "PALETTE"; break; case t_item: diff --git a/source/common/asset.h b/source/common/asset.h index f7986dc..36c100f 100644 --- a/source/common/asset.h +++ b/source/common/asset.h @@ -12,8 +12,8 @@ enum assetType t_font, t_lang, t_data, - t_room, - t_enemy, + t_animation, + t_palette, t_item, t_maxAssetType };