mirror of
https://github.com/halpz/re3.git
synced 2025-01-10 20:45:30 +00:00
16 lines
276 B
C++
16 lines
276 B
C++
|
#include "common.h"
|
||
|
#include "patcher.h"
|
||
|
#include "NodeName.h"
|
||
|
|
||
|
int &gPluginOffset = *(int*)0x64C610;
|
||
|
|
||
|
#define NODENAMEEXT(o) (RWPLUGINOFFSET(char, o, gPluginOffset))
|
||
|
|
||
|
char*
|
||
|
GetFrameNodeName(RwFrame *frame)
|
||
|
{
|
||
|
if(gPluginOffset < 0)
|
||
|
return nil;
|
||
|
return NODENAMEEXT(frame);
|
||
|
}
|