diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-09-30 21:12:54 +0100 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-09-30 21:12:54 +0100 |
commit | 8b93a09f5b12ce7967df5824794ed24b3ff31cdc (patch) | |
tree | 1ce680cb9134273870373134f845633e2c390bde /NorthstarDedicatedTest/tier0.cpp | |
parent | 2497b700379205ea01c1aa0c55a19be523233be1 (diff) | |
download | NorthstarLauncher-8b93a09f5b12ce7967df5824794ed24b3ff31cdc.tar.gz NorthstarLauncher-8b93a09f5b12ce7967df5824794ed24b3ff31cdc.zip |
add maxplayers to dedi window title
Diffstat (limited to 'NorthstarDedicatedTest/tier0.cpp')
-rw-r--r-- | NorthstarDedicatedTest/tier0.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/NorthstarDedicatedTest/tier0.cpp b/NorthstarDedicatedTest/tier0.cpp index bc1bbf46..74ac02d3 100644 --- a/NorthstarDedicatedTest/tier0.cpp +++ b/NorthstarDedicatedTest/tier0.cpp @@ -8,7 +8,7 @@ void* ResolveTier0Function(const char* name) HMODULE tier0 = GetModuleHandle(L"tier0.dll"); // todo: maybe cache resolved funcs? idk the performance hit of getprocaddress - std::cout << "ResolveTier0Function " << name << " " << tier0 << "::" << GetProcAddress(tier0, name) << std::endl; + //std::cout << "ResolveTier0Function " << name << " " << tier0 << "::" << GetProcAddress(tier0, name) << std::endl; return GetProcAddress(tier0, name); } |