mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Fix std::string cast
This commit is contained in:
parent
2be10dbaa4
commit
66cdb6ff18
@ -430,7 +430,7 @@ void CConsole::ProcessCommand(const char* pszCommand)
|
||||
int nFirst = (int)m_vsvHistory.size() - 10;
|
||||
for (int i = nFirst > 0 ? nFirst : 0; i < (int)m_vsvHistory.size(); i++)
|
||||
{
|
||||
AddLog("%3d: %s\n", i, m_vsvHistory[i]);
|
||||
AddLog("%3d: %s\n", i, m_vsvHistory[i].c_str());
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user