From dc524f61aac5ff987d2b97ea258f4977fcfa78bb Mon Sep 17 00:00:00 2001 From: aixxe Date: Mon, 19 Dec 2016 18:29:20 +0000 Subject: [PATCH] Fix incorrect virtual index for IPanel::PaintTraverse. Signed-off-by: aixxe --- include/cstrike/Interfaces/IPanel.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/cstrike/Interfaces/IPanel.h b/include/cstrike/Interfaces/IPanel.h index 458fa8f..a43fe08 100644 --- a/include/cstrike/Interfaces/IPanel.h +++ b/include/cstrike/Interfaces/IPanel.h @@ -9,6 +9,6 @@ class IPanel { } void PaintTraverse(VPANEL vpanel, bool force_repaint, bool allow_force) { - GetVirtualFunction(this, 37)(this, vpanel, force_repaint, allow_force); + GetVirtualFunction(this, 42)(this, vpanel, force_repaint, allow_force); } }; \ No newline at end of file