Skip to content

Commit

Permalink
BLUGA: Fix compile
Browse files Browse the repository at this point in the history
  • Loading branch information
TTENSHII committed Nov 4, 2023
1 parent 631e605 commit 0a2bd1c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ namespace Systems {
size = calculateSize(sprite);
sprite.drawPro(
Raylib::Rectangle(0.F, 0.F, sprite.getTextureWidth(), sprite.getTextureHeight()),
Raylib::Rectangle(pos.x, pos.y, size.x, size.y),
Raylib::Rectangle(position.x, position.y, size.x, size.y),
Raylib::Vector2(origin.x, origin.y),
rotation,
tint);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ namespace Types {
}
_physicsMap[ZIGZAG] = zigzag;
}
std::unordered_map<physicsType, std::any> _physicsMap;
std::unordered_map<PhysicsType, std::any> _physicsMap;
};

struct Dead {
Expand Down

0 comments on commit 0a2bd1c

Please sign in to comment.