Skip to content

Commit

Permalink
size_t in dynentframe/dynentcacheentry
Browse files Browse the repository at this point in the history
  • Loading branch information
no-lex committed Feb 18, 2025
1 parent 50b8d5d commit ba5df65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/engine/world/physics.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -193,12 +193,12 @@ static CollisionInfo ellipsecollide(const physent *d, const vec &dir, const vec

static constexpr int dynentcachesize = 1024;

static uint dynentframe = 0;
static size_t dynentframe = 0;

static struct dynentcacheentry
{
int x, y;
uint frame;
size_t frame;
std::vector<const physent *> dynents;
} dynentcache[dynentcachesize];

Expand Down

0 comments on commit ba5df65

Please sign in to comment.