DrawSetColor is crashing for no resone

Начинающий
Статус
Оффлайн
Регистрация
6 Авг 2018
Сообщения
65
Реакции[?]
13
Поинты[?]
0
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?
Код:
 void DrawSetColor (CColor col)
        {
            typedef void (__ thiscall * Fn) (void *, CColor);
            return ((Fn) VMT :: VMTHookManager :: GetFunction <Fn> (this, 14)) (this, col);
        }
 
Эксперт
Статус
Оффлайн
Регистрация
31 Авг 2018
Сообщения
1,792
Реакции[?]
1,073
Поинты[?]
29K
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?
Код:
 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
 
Начинающий
Статус
Оффлайн
Регистрация
6 Авг 2018
Сообщения
65
Реакции[?]
13
Поинты[?]
0
[QUOTE = "bludeck, post: 830343, member: 90684"] wrong index, right is 15 [/ QUOTE]
I think that 15 is one with ints nor Vector CColor
 
Сверху Снизу