From dcb83a68565d06d46d963f70ac0fda1c2ef4ab8d Mon Sep 17 00:00:00 2001 From: Marc-Antoine Lortie Date: Tue, 7 Dec 2021 19:50:25 -0500 Subject: [PATCH] Fixed wrong base class specified. (#221) --- dlls/buttons.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/buttons.cpp b/dlls/buttons.cpp index 87e08ce7..9a63fe34 100644 --- a/dlls/buttons.cpp +++ b/dlls/buttons.cpp @@ -130,7 +130,7 @@ TYPEDESCRIPTION CMultiSource::m_SaveData[] = DEFINE_FIELD( CMultiSource, m_globalstate, FIELD_STRING ), }; -IMPLEMENT_SAVERESTORE( CMultiSource, CBaseEntity ) +IMPLEMENT_SAVERESTORE( CMultiSource, CPointEntity ) LINK_ENTITY_TO_CLASS( multisource, CMultiSource )