Skip to content

Commit

Permalink
xrGame: fix Windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
eagleivg committed Nov 8, 2018
1 parent 26bc17f commit 93c51f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/xrGame/xrGame.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,13 @@ BOOL APIENTRY DllMain(HANDLE hModule, u32 ul_reason_for_call, LPVOID lpReserved)
{
case DLL_PROCESS_ATTACH:
{
load();
load(0, nullptr, nullptr);
break;
}

case DLL_PROCESS_DETACH:
{
unload()
unload();
break;
}
}
Expand Down

0 comments on commit 93c51f8

Please sign in to comment.