Skip to content

Commit

Permalink
BLUGA: Remove log no ok with level
Browse files Browse the repository at this point in the history
PATCH
  • Loading branch information
Saverio976 committed Nov 5, 2023
1 parent acde44d commit 1ca5728
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,6 @@ namespace Systems {

auto ids = arrSpriteDatas.getExistingsId();
for (auto id : ids) {
Logger::fatal("Creating sprite with id: " + std::to_string(id) + " and path: " + arrSpriteDatas[id].fileName);
auto &spriteDatas = arrSpriteDatas[id];
Raylib::SpriteShared sprite = Raylib::Sprite::fromFile(
spriteDatas.fileName,
Expand Down
1 change: 0 additions & 1 deletion libs/B-luga/include/B-luga/Registry.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,6 @@ class Registry {
for (auto group : _allies) {
std::vector<std::size_t> ids = registry.getEntitiesWithOneOfComponents({group.second});
if (std::find(ids.begin(), ids.end(), fstId) != ids.end() && std::find(ids.begin(), ids.end(), scdId) != ids.end()) {
Logger::fatal("This is an ally");
return true;
}
}
Expand Down

0 comments on commit 1ca5728

Please sign in to comment.