remove the expand sprite log

This commit is contained in:
altalk23 2023-09-15 08:17:40 +03:00
parent 26a6c7e96d
commit 372ea0e78c
2 changed files with 1 additions and 2 deletions

View file

@ -198,7 +198,7 @@ std::string generateBindingSource(Root const& root) {
) {
used_declare_format = format_strings::declare_virtual_error;
}
else if (codegen::getStatus(f) != BindStatus::NeedsBinding) {
else if (codegen::getStatus(f) != BindStatus::NeedsBinding && !android_has_boobs(f)) {
continue;
}

View file

@ -592,7 +592,6 @@ ghc::filesystem::path Mod::Impl::getConfigDir(bool create) const {
}
char const* Mod::Impl::expandSpriteName(char const* name) {
log::debug("Expanding sprite name {} for {}", name, m_metadata.getID());
if (m_expandedSprites.count(name)) return m_expandedSprites[name];
auto exp = new char[strlen(name) + 2 + m_metadata.getID().size()];