From e0e01948b8ddd3c84a912c98bade2526dac111d3 Mon Sep 17 00:00:00 2001 From: Benoist <14257866+Kenzzer@users.noreply.github.com> Date: Sat, 19 Oct 2024 01:46:19 +0200 Subject: [PATCH] Update icommandline.h (#277) --- public/tier0/icommandline.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/public/tier0/icommandline.h b/public/tier0/icommandline.h index 9294bfaa..99924a85 100644 --- a/public/tier0/icommandline.h +++ b/public/tier0/icommandline.h @@ -1,4 +1,4 @@ -//===== Copyright © 1996-2005, Valve Corporation, All rights reserved. ======// +//===== Copyright © 1996-2005, Valve Corporation, All rights reserved. ======// // // Purpose: // @@ -41,8 +41,8 @@ public: virtual bool HasParm( const char *parm ) = 0; // Additions in 9247927 (2024-10-11) - virtual void CreateCmdLine( const char *commandline, bool unknown ) = 0; - virtual void CreateCmdLine( int argc, char **argv, bool unknown ) = 0; + virtual void CreateCmdLine1( const char *commandline, bool unknown ) = 0; + virtual void CreateCmdLine1( int argc, char **argv, bool unknown ) = 0; }; //-----------------------------------------------------------------------------