Skip to content

Commit

Permalink
Downgrade CGroundDecalHandler::AddTexToAtlas() errors into warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
lhog committed Mar 23, 2024
1 parent 1b70157 commit e413782
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rts/Rendering/Env/Decals/GroundDecalHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ void CGroundDecalHandler::AddTexToAtlas(const std::string& name, const std::stri
decalAtlas->AddTexFromBitmap(name, bm);
}
catch (const content_error& err) {
LOG_L(L_ERROR, "%s", err.what());
LOG_L(L_WARNING, "%s", err.what());
}
}

Expand Down

0 comments on commit e413782

Please sign in to comment.