DrawSetColor is crashing for no resone

  • Автор темы Автор темы pepe25
  • Дата начала Дата начала
Начинающий
Начинающий
Статус
Оффлайн
Регистрация
6 Авг 2018
Сообщения
65
Реакции
13
I know that it crashing cuz every time I enable any visual function it does crash and if I unhook paint travers it doesnt and if i comment DrawSetColor it doesnt any idea?
Код:
Expand Collapse Copy
 void DrawSetColor (CColor col)
        {
            typedef void (__ thiscall * Fn) (void *, CColor);
            return ((Fn) VMT :: VMTHookManager :: GetFunction <Fn> (this, 14)) (this, col);
        }
 
I know that it crashing cuz every time I enable any visual function it does crash and if I unhook paint travers it doesnt and if i comment DrawSetColor it doesnt any idea?
Код:
Expand Collapse Copy
 void DrawSetColor (CColor col)
        {
            typedef void (__ thiscall * Fn) (void *, CColor);
            return ((Fn) VMT :: VMTHookManager :: GetFunction <Fn> (this, 14)) (this, col);
        }
wrong index, right is 15
 
Назад
Сверху Снизу