Fix incorrect virtual index for IPanel::PaintTraverse.
Signed-off-by: aixxe <me@aixxe.net>
This commit is contained in:
parent
cdd6c28dac
commit
dc524f61aa
|
@ -9,6 +9,6 @@ class IPanel {
|
||||||
}
|
}
|
||||||
|
|
||||||
void PaintTraverse(VPANEL vpanel, bool force_repaint, bool allow_force) {
|
void PaintTraverse(VPANEL vpanel, bool force_repaint, bool allow_force) {
|
||||||
GetVirtualFunction<void(*)(IPanel*, VPANEL, bool, bool)>(this, 37)(this, vpanel, force_repaint, allow_force);
|
GetVirtualFunction<void(*)(IPanel*, VPANEL, bool, bool)>(this, 42)(this, vpanel, force_repaint, allow_force);
|
||||||
}
|
}
|
||||||
};
|
};
|
Loading…
Reference in New Issue