Skip to content

Commit 5701b25

Browse files
authored
Update AllocatorSymbolOverride.hpp
1 parent be8b314 commit 5701b25

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Code/core/include/AllocatorSymbolOverride.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ namespace TiltedPhoques
88
{
99
inline void* TPAlloc(const size_t acSize)
1010
{
11-
return TiltedPhoques::Allocator::Get()->Allocate(acSize);
11+
return TiltedPhoques::Allocator::GetDefault()->Allocate(acSize);
1212
}
1313

1414
inline void TPFree(void* apBlock)
1515
{
16-
TiltedPhoques::Allocator::Get()->Free(apBlock);
16+
TiltedPhoques::Allocator::GetDefault()->Free(apBlock);
1717
}
1818
}
1919

0 commit comments

Comments
 (0)