Skip to content

Commit 82de12c

Browse files
committed
fix: enable dota
1 parent d6557cf commit 82de12c

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

src/main/appframework.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,11 +152,8 @@ void InitializeAppSystems()
152152
g_factoryMap[appSystem.interfaceVersion] = interface;
153153
if (appSystem.connect)
154154
{
155-
// TEMP: dota and deadlock is broken rn
156-
#ifdef GAME_CS2
157155
interface->Connect(&AppSystemFactory);
158156
interface->Init();
159-
#endif
160157
}
161158
else
162159
{

src/main/main.cpp

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,6 @@ int main(int argc, char** argv)
5454

5555
printf("Dumping\n");
5656

57-
// TEMP: cs2 and dota/deadlock sdks are mismatched in ICvar vtable right now
58-
#ifdef GAME_CS2
59-
Dumpers::ConCommands::Dump();
60-
#endif
61-
57+
Dumpers::ConCommands::Dump();
6258
Dumpers::Schemas::Dump();
6359
}

0 commit comments

Comments
 (0)