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

Fix Spelling Error #4541

Merged
merged 1 commit into from
Nov 19, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Memory/GameData.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ void GameData::retrieveClientInstance() {
if (sigOffset != 0x0) {
int offset = *reinterpret_cast<int*>((sigOffset + 3)); // Get Offset from code
clientInstanceOffset = sigOffset - g_Data.gameModule->ptrBase + offset + /*length of instruction*/ 7; // Offset is relative
logF("clinet: %llX", clientInstanceOffset);
logF("client: %llX", clientInstanceOffset);
}
}
// clientInstanceOffset = 0x03CD5058; // pointer scanned, can't find good signatures so it'll stay
Expand Down Expand Up @@ -252,4 +252,4 @@ void GameData::log(const char* fmt, ...) {
std::string msg(message);
g_Data.textPrintList.push_back(msg);
va_end(arg);
}
}