Skip to content

Commit bfc903e

Browse files
committed
fix recusion
1 parent e9b4156 commit bfc903e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Cloak/src/user/sample.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,17 @@ void Sample::Run()
2727

2828
void Sample::ReHookCheats()
2929
{
30-
this->ReHookCheats();
30+
this->factory.ReHookCheats();
3131
}
3232

3333
void Sample::HookCheats()
3434
{
35-
this->HookCheats();
35+
this->factory.HookCheats();
3636
}
3737

3838
void Sample::UnHookCheats()
3939
{
40-
this->UnHookCheats();
40+
this->factory.UnHookCheats();
4141
}
4242

4343
void Sample::ScanPatterns()

0 commit comments

Comments
 (0)