Skip to content
This repository has been archived by the owner on Nov 22, 2021. It is now read-only.

Commit

Permalink
Comment out the autojump, when I'll need it it'll probably be in SPT …
Browse files Browse the repository at this point in the history
…anyways.
  • Loading branch information
YaLTeR committed Jun 30, 2014
1 parent 5b3292a commit 811263a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions DemoPlayerProxy/DemoPlayerProxy.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@
<LinkIncremental>true</LinkIncremental>
<OutDir>C:\Games\Half-Life\</OutDir>
<TargetName>DemoPlayer</TargetName>
<IncludePath>C:\Tools\Detours\include;$(IncludePath)</IncludePath>
<LibraryPath>C:\Tools\Detours\lib.X86;$(LibraryPath)</LibraryPath>
<IncludePath>D:\Tools\Source\Detours\include;$(IncludePath)</IncludePath>
<LibraryPath>D:\Tools\Source\Detours\lib.X86;$(LibraryPath)</LibraryPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<LinkIncremental>false</LinkIncremental>
<OutDir>C:\Games\Half-Life\</OutDir>
<TargetName>DemoPlayer</TargetName>
<IncludePath>C:\Tools\Detours\include;$(IncludePath)</IncludePath>
<LibraryPath>C:\Tools\Detours\lib.X86;$(LibraryPath)</LibraryPath>
<IncludePath>D:\Tools\Source\Detours\include;$(IncludePath)</IncludePath>
<LibraryPath>D:\Tools\Source\Detours\lib.X86;$(LibraryPath)</LibraryPath>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
Expand Down
10 changes: 5 additions & 5 deletions DemoPlayerProxy/hooks.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ namespace Hooks
SERVER_OriginalGiveFnptrsToDll(pengfuncsFromEngine, pGlobals);

Hooks::Server::HookBhopCap();
Hooks::Server::HookAutojump();
//Hooks::Server::HookAutojump();
}
}

Expand Down Expand Up @@ -632,7 +632,7 @@ namespace Hooks

Hooks::Client::HookEngfuncs();
Hooks::Client::HookBhopCap();
Hooks::Client::HookAutojump();
//Hooks::Client::HookAutojump();
}

void HookServerDLL()
Expand All @@ -656,7 +656,7 @@ namespace Hooks

server_dll.pEngfuncs = NULL;
Hooks::Server::HookBhopCap();
Hooks::Server::HookAutojump();
//Hooks::Server::HookAutojump();

return;
}
Expand All @@ -677,7 +677,7 @@ namespace Hooks

server_dll.pEngfuncs = NULL;
Hooks::Server::HookBhopCap();
Hooks::Server::HookAutojump();
//Hooks::Server::HookAutojump();
}
}

Expand All @@ -704,7 +704,7 @@ namespace Hooks

server_dll.pEngfuncs = NULL;
Hooks::Server::HookBhopCap();
Hooks::Server::HookAutojump();
//Hooks::Server::HookAutojump();
}
}
}

0 comments on commit 811263a

Please sign in to comment.