mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-17 01:49:01 +00:00
14 lines
242 B
C++
14 lines
242 B
C++
|
#include "common.h"
|
||
|
#include "patcher.h"
|
||
|
#include "CopPed.h"
|
||
|
|
||
|
CCopPed::~CCopPed()
|
||
|
{
|
||
|
ClearPursuit();
|
||
|
}
|
||
|
|
||
|
WRAPPER void CCopPed::ClearPursuit(void) { EAXJMP(0x4C28C0); }
|
||
|
|
||
|
STARTPATCHES
|
||
|
InjectHook(0x4C13E0, &CCopPed::dtor, PATCH_JUMP);
|
||
|
ENDPATCHES
|