mirror of
https://github.com/halpz/re3.git
synced 2025-07-13 23:38:12 +00:00
CdStream RwFreeAlign/RwMallocAlign
This commit is contained in:
@ -5,10 +5,7 @@
|
||||
#include "RpAnimBlend.h"
|
||||
#include "AnimManager.h"
|
||||
#include "AnimBlendAssociation.h"
|
||||
|
||||
// TODO: implement those
|
||||
#define RwFreeAlign RwFree
|
||||
#define RwMallocAlign(sz, algn) RwMalloc(sz)
|
||||
#include "RwHelper.h"
|
||||
|
||||
CAnimBlendAssociation::CAnimBlendAssociation(void)
|
||||
{
|
||||
@ -57,6 +54,7 @@ CAnimBlendAssociation::AllocateAnimBlendNodeArray(int n)
|
||||
void
|
||||
CAnimBlendAssociation::FreeAnimBlendNodeArray(void)
|
||||
{
|
||||
ASSERT( nodes != NULL );
|
||||
RwFreeAlign(nodes);
|
||||
}
|
||||
|
||||
|
@ -1,10 +1,8 @@
|
||||
#include "common.h"
|
||||
#include "patcher.h"
|
||||
#include "AnimBlendClumpData.h"
|
||||
#include "RwHelper.h"
|
||||
|
||||
// TODO: implement those
|
||||
#define RwFreeAlign RwFree
|
||||
#define RwMallocAlign(sz, algn) RwMalloc(sz)
|
||||
|
||||
CAnimBlendClumpData::CAnimBlendClumpData(void)
|
||||
{
|
||||
|
Reference in New Issue
Block a user