mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-12 05:35:05 +00:00
Migrate s32->int, u32->uint; fix dolphin/types.h
Former-commit-id: 7eb08b6ee8
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
namespace rstl {
|
||||
struct rmemory_allocator {
|
||||
template < typename T >
|
||||
static void allocate(T*& out, s32 sz) {
|
||||
static void allocate(T*& out, int sz) {
|
||||
out = reinterpret_cast< T* >(new u8[sz]);
|
||||
}
|
||||
template < typename T >
|
||||
|
||||
Reference in New Issue
Block a user