Skip to content

Commit

Permalink
Fix misreported cvar value.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lyall committed Sep 1, 2024
1 parent 325c176 commit c3b7009
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dllmain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ void SetCVARs()
std::wstring wValue(cvar.second.begin(), cvar.second.end());
// Set value
consoleVariable->Set(wValue.c_str());
spdlog::info("CVar: Custom CVars: Set {} to {}", cvar.first, consoleVariable->GetString().ToString());
spdlog::info("CVar: Custom CVars: Set {} to {}", cvar.first, cvar.second);
}
else {
spdlog::info("CVar: Custom CVars: Failed to find {}", cvar.first);
Expand Down

0 comments on commit c3b7009

Please sign in to comment.