Fix incorrect virtual index for IPanel::PaintTraverse.

Signed-off-by: aixxe <me@aixxe.net>
This commit is contained in:
aixxe 2016-12-19 18:29:20 +00:00
parent cdd6c28dac
commit dc524f61aa
1 changed files with 1 additions and 1 deletions

View File

@ -9,6 +9,6 @@ class IPanel {
}
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);
}
};