Skip to content

Commit

Permalink
Update AllocatorSymbolOverride.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Yamashi authored Apr 16, 2022
1 parent be8b314 commit 5701b25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Code/core/include/AllocatorSymbolOverride.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ namespace TiltedPhoques
{
inline void* TPAlloc(const size_t acSize)
{
return TiltedPhoques::Allocator::Get()->Allocate(acSize);
return TiltedPhoques::Allocator::GetDefault()->Allocate(acSize);
}

inline void TPFree(void* apBlock)
{
TiltedPhoques::Allocator::Get()->Free(apBlock);
TiltedPhoques::Allocator::GetDefault()->Free(apBlock);
}
}

Expand Down

0 comments on commit 5701b25

Please sign in to comment.