Skip to content

Commit

Permalink
uint -> uint32_t after msvc choked on it
Browse files Browse the repository at this point in the history
  • Loading branch information
crocdialer committed Apr 13, 2024
1 parent 8137be9 commit d60ef05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/physics_context.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ bool operator==(const vierkant::physics_component_t &lhs, const vierkant::physic

// Callback for asserts, connect this to your own assert handler if you have one
[[maybe_unused]] static bool AssertFailedImpl(const char *inExpression, const char *inMessage, const char *inFile,
uint inLine)
uint32_t inLine)
{
spdlog::error("{} : {} : ({}) {}", inFile, inLine, inExpression, inMessage ? inMessage : "");
return true;
Expand Down

0 comments on commit d60ef05

Please sign in to comment.