CryEngine compiles
Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
@@ -1341,7 +1341,7 @@ bool CXConsole::ProcessInput(const AzFramework::InputChannel& inputChannel)
|
||||
{
|
||||
if (isCtrlModifierActive)
|
||||
{
|
||||
m_nScrollLine = m_dqConsoleBuffer.size() - 1;
|
||||
m_nScrollLine = static_cast<int>(m_dqConsoleBuffer.size() - 1);
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -1454,7 +1454,7 @@ bool CXConsole::GetLineNo(const int indwLineNo, char* outszBuffer, const int ind
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
int CXConsole::GetLineCount() const
|
||||
{
|
||||
return m_dqConsoleBuffer.size();
|
||||
return static_cast<int>(m_dqConsoleBuffer.size());
|
||||
}
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
@@ -2675,7 +2675,7 @@ void CXConsole::RemoveOutputPrintSink(IOutputPrintSink* inpSink)
|
||||
{
|
||||
assert(inpSink);
|
||||
|
||||
int nCount = m_OutputSinks.size();
|
||||
int nCount = static_cast<int>(m_OutputSinks.size());
|
||||
|
||||
for (int i = 0; i < nCount; i++)
|
||||
{
|
||||
@@ -2965,7 +2965,7 @@ bool CXConsole::IsHashCalculated()
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
int CXConsole::GetNumCheatVars()
|
||||
{
|
||||
return m_randomCheckedVariables.size();
|
||||
return static_cast<int>(m_randomCheckedVariables.size());
|
||||
}
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
|
||||
Reference in New Issue
Block a user