first commit
This commit is contained in:
22
src/References.cpp
Normal file
22
src/References.cpp
Normal file
@@ -0,0 +1,22 @@
|
||||
#include "common.h"
|
||||
#include "patcher.h"
|
||||
#include "References.h"
|
||||
|
||||
CReference *CReferences::aRefs = (CReference*)0x70BBE0; //[NUMREFERENCES];
|
||||
CReference *&CReferences::pEmptyList = *(CReference**)0x8F1AF8;
|
||||
|
||||
void
|
||||
CReferences::Init(void)
|
||||
{
|
||||
int i;
|
||||
pEmptyList = &aRefs[0];
|
||||
for(i = 0; i < NUMREFERENCES; i++){
|
||||
aRefs[i].pentity = nil;
|
||||
aRefs[i].next = &aRefs[i+1];
|
||||
}
|
||||
aRefs[NUMREFERENCES-1].next = nil;
|
||||
}
|
||||
|
||||
STARTPATCHES
|
||||
InjectHook(0x4A7350, CReferences::Init, PATCH_JUMP);
|
||||
ENDPATCHES
|
||||
Reference in New Issue
Block a user