[FileSystem] Remove debug message

This commit is contained in:
momo5502 2017-06-30 00:41:15 +02:00
parent dd1308a7f9
commit d697c94388
3 changed files with 4 additions and 11 deletions

View File

@ -494,7 +494,7 @@ namespace Components
}
});
//AntiCheat::AcquireDebugPriviledge(hToken);
//AntiCheat::AcquireDebugPrivilege(hToken);
DWORD dwSize = 0;
PVOID pTokenInfo = nullptr;
@ -607,7 +607,7 @@ namespace Components
#endif
}
void AntiCheat::AcquireDebugPriviledge(HANDLE hToken)
void AntiCheat::AcquireDebugPrivilege(HANDLE hToken)
{
LUID luid;
TOKEN_PRIVILEGES tp = { 0 };

View File

@ -87,7 +87,7 @@ namespace Components
static void DObjGetWorldTagPosStub();
static void AimTargetGetTagPosStub();
static void AcquireDebugPriviledge(HANDLE hToken);
static void AcquireDebugPrivilege(HANDLE hToken);
static NTSTATUS NTAPI NtCreateThreadExStub(PHANDLE hThread, ACCESS_MASK desiredAccess, LPVOID objectAttributes, HANDLE processHandle, LPTHREAD_START_ROUTINE startAddress, LPVOID parameter, BOOL createSuspended, DWORD stackZeroBits, DWORD sizeOfStackCommit, DWORD sizeOfStackReserve, LPVOID bytesBuffer);
static int ValidateThreadTermination(void* addr);

View File

@ -251,14 +251,7 @@ namespace Components
int FileSystem::ExecIsFSStub(const char* execFilename)
{
bool result = !File(execFilename).exists();
if (execFilename == "mp/stats_init.cfg"s)
{
OutputDebugStringA("");
}
return result;
return !File(execFilename).exists();
}
void FileSystem::FsStartupSync(const char* a1)