canviat dos tipos de recursos en la classe Asset

This commit is contained in:
2024-07-28 16:47:26 +02:00
parent 7dbed9ab8e
commit f1159f2bf3
2 changed files with 6 additions and 6 deletions

View File

@@ -165,12 +165,12 @@ std::string Asset::getTypeName(int type)
return "DATA"; return "DATA";
break; break;
case t_room: case t_animation:
return "ROOM"; return "ANIMATION";
break; break;
case t_enemy: case t_palette:
return "ENEMY"; return "PALETTE";
break; break;
case t_item: case t_item:

View File

@@ -12,8 +12,8 @@ enum assetType
t_font, t_font,
t_lang, t_lang,
t_data, t_data,
t_room, t_animation,
t_enemy, t_palette,
t_item, t_item,
t_maxAssetType t_maxAssetType
}; };