bool IROMFileMemory::IsAvailable() { DAEDALUS_ASSERT( mRomMemoryHeap != NULL, "This heap isn't available" ); return mRomMemoryHeap != NULL; } */
| 111 | // |
| 112 | //***************************************************************************** |
| 113 | void * IROMFileMemory::Alloc( u32 size ) |
| 114 | { |
| 115 | #ifdef DAEDALUS_PSP |
| 116 | return mRomMemoryHeap->Alloc( size ); |
| 117 | #else |
| 118 | return malloc( size ); |
| 119 | #endif |
| 120 | } |
| 121 | |
| 122 | //***************************************************************************** |
| 123 | // |
nothing calls this directly
no outgoing calls
no test coverage detected