Skip to content

Commit 08126c7

Browse files
committed
fix: update sdk
1 parent 31197ab commit 08126c7

3 files changed

Lines changed: 1 addition & 7 deletions

File tree

src/main/appframework.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,6 @@ void* AppSystemFactory(const char* pName, int* pReturnCode)
9494
// which then calls convar change handlers that try to load main scenesystem appsystem
9595
void SetConvarValueStub(ICvar* icvar, ConVarRef ref)
9696
{
97-
// TODO: remove after cvar interface is fixed
98-
#ifndef GAME_CS2
9997
ConVarRefAbstract cvar(ref);
10098
if (!cvar.IsConVarDataValid())
10199
return;
@@ -105,7 +103,6 @@ void SetConvarValueStub(ICvar* icvar, ConVarRef ref)
105103
{
106104
cvar.SetBool(false);
107105
}
108-
#endif
109106
}
110107

111108
void InitializeCoreModules()

src/main/main.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,7 @@ int main(int argc, char** argv)
5858
InitializeCoreModules();
5959
InitializeAppSystems();
6060

61-
// TODO: remove after cvar interface is fixed
62-
#ifndef GAME_CS2
6361
Dumpers::ConCommands::Dump();
64-
#endif
6562
Dumpers::Schemas::Dump();
6663

6764
std::ofstream file(Globals::outputPath / ".stringsignore");

0 commit comments

Comments
 (0)