From 6ef5dfa3f5b504e0ad33dffc1596509caa2cbb04 Mon Sep 17 00:00:00 2001 From: Nick Hastings Date: Sun, 29 Jan 2023 14:56:57 -0500 Subject: [PATCH] Add some missing ICVar func names. --- public/icvar.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/public/icvar.h b/public/icvar.h index e54e72ae..baa1a261 100644 --- a/public/icvar.h +++ b/public/icvar.h @@ -122,9 +122,9 @@ public: virtual bool HasQueuedMaterialThreadConVarSets() const = 0; virtual int ProcessQueuedMaterialThreadConVarSets() = 0; - virtual void UnknownFunc1() = 0; - virtual void UnknownFunc2() = 0; - virtual void UnknownFunc3() = 0; + virtual void QueueMaterialThreadSetConCommand( ConCommand *pConCommand ) = 0; + virtual bool HasQueuedMaterialThreadConCommandSets() const = 0; + virtual int ProcessQueuedMaterialThreadConCommandSets() = 0; protected: class ICVarIteratorInternal; public: