commit pollós

This commit is contained in:
2025-10-17 21:09:08 +02:00
parent 9b966a260c
commit 50ccb2ccc2
2 changed files with 73 additions and 1 deletions

View File

@@ -12,6 +12,7 @@
#include "resource_helper.h" // Para ResourceHelper
#include "utils.h" // Para getFileName
#include "ui/logger.h" // Pâra Logger
// Singleton
Asset *Asset::instance = nullptr;
@@ -162,7 +163,8 @@ auto Asset::exists(const std::string &filename) const -> bool {
auto Asset::check() const -> bool {
bool success = true;
SDL_LogInfo(SDL_LOG_CATEGORY_APPLICATION, "\n** CHECKING FILES");
//SDL_LogInfo(SDL_LOG_CATEGORY_APPLICATION, "\n** CHECKING FILES");
Logger::section("CHECKING FILES", Logger::CYAN);
// Agrupar por tipo para mostrar organizado
std::unordered_map<Type, std::vector<const Item *>> by_type;