diff options
| author | robojumper <robojumper@gmail.com> | 2024-05-30 08:51:37 +0200 |
|---|---|---|
| committer | robojumper <robojumper@gmail.com> | 2024-05-30 08:51:37 +0200 |
| commit | 9284421356be8d5268d526ccd1f22eb21cc8ed42 (patch) | |
| tree | 9aff9e8e5afd4052c971d73179189eb8152ba58a /src/m/m_allocator.cpp | |
| parent | 6f3dc9c41f2d8c0e7ccf3dd2bee58cf5d008fb0c (diff) | |
use bools
Diffstat (limited to 'src/m/m_allocator.cpp')
| -rw-r--r-- | src/m/m_allocator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/m/m_allocator.cpp b/src/m/m_allocator.cpp index a4f2c05b..e03651df 100644 --- a/src/m/m_allocator.cpp +++ b/src/m/m_allocator.cpp @@ -84,7 +84,7 @@ s32 mHeapAllocator_c::adjustExpHeap() { return mHeap::adjustExpHeap(static_cast<EGG::ExpHeap *>(getHeapOfKind(heap, EGG::Heap::HEAP_KIND_EXPANDED))); } -s32 mHeapAllocator_c::createNewTempFrmHeap(s32 size, EGG::Heap *newHeap, char *heapName, s32 align, u32 attrs) { +bool mHeapAllocator_c::createNewTempFrmHeap(s32 size, EGG::Heap *newHeap, char *heapName, s32 align, u32 attrs) { if (!replaceWithNewFrmHeap(size, newHeap, heapName, align, attrs)) { return false; } |
