diff options
| author | Jcw87 <Jcw87@users.noreply.github.com> | 2023-11-22 01:14:36 -0800 |
|---|---|---|
| committer | Jcw87 <Jcw87@users.noreply.github.com> | 2023-12-20 18:50:51 -0800 |
| commit | 586e74f8d444189b2db283f0150d2072796ff5c0 (patch) | |
| tree | e4a263cd682d8df969d0af6dd2e6961b77ad9674 /src/SSystem/SComponent/c_malloc.cpp | |
| parent | 94465b0dbbdd94d2e579dc16996170d3d6a479e3 (diff) | |
make function signatures more consistent
Diffstat (limited to 'src/SSystem/SComponent/c_malloc.cpp')
| -rw-r--r-- | src/SSystem/SComponent/c_malloc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SSystem/SComponent/c_malloc.cpp b/src/SSystem/SComponent/c_malloc.cpp index 98b0f84e..2dfa0860 100644 --- a/src/SSystem/SComponent/c_malloc.cpp +++ b/src/SSystem/SComponent/c_malloc.cpp @@ -15,7 +15,7 @@ void cMl::init(JKRHeap* heap) { } /* 802412F8-80241330 .text memalignB__3cMlFiUl */ -void* cMl::memalignB(int alignment, unsigned long size) { +void* cMl::memalignB(int alignment, u32 size) { if (size == 0) return NULL; else |
