- Fixed: PrintAlias passed FString objects directly to Printf.
- Added bitwise not (~) operator to ACS. SVN r352 (trunk)
This commit is contained in:
parent
3dabd38359
commit
92c3a89255
5 changed files with 13 additions and 3 deletions
|
|
@ -993,11 +993,11 @@ void FConsoleAlias::PrintAlias ()
|
|||
{
|
||||
if (m_Command[0])
|
||||
{
|
||||
Printf (TEXTCOLOR_YELLOW "%s : %s\n", m_Name, m_Command[0]);
|
||||
Printf (TEXTCOLOR_YELLOW "%s : %s\n", m_Name, m_Command[0].GetChars());
|
||||
}
|
||||
if (m_Command[1])
|
||||
{
|
||||
Printf (TEXTCOLOR_ORANGE "%s : %s\n", m_Name, m_Command[1]);
|
||||
Printf (TEXTCOLOR_ORANGE "%s : %s\n", m_Name, m_Command[1].GetChars());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue