CryEngine compiles
Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
@@ -285,7 +285,7 @@ public:
|
||||
pos = 1;
|
||||
for (;; )
|
||||
{
|
||||
pos = szValue.find_first_of("\\", pos);
|
||||
pos = static_cast<int>(szValue.find_first_of("\\", pos));
|
||||
|
||||
if (pos == string::npos)
|
||||
{
|
||||
@@ -300,7 +300,7 @@ public:
|
||||
pos = 1;
|
||||
for (;; )
|
||||
{
|
||||
pos = szValue.find_first_of("\"", pos);
|
||||
pos = static_cast<int>(szValue.find_first_of("\"", pos));
|
||||
|
||||
if (pos == string::npos)
|
||||
{
|
||||
@@ -414,7 +414,7 @@ bool CSystemConfiguration::ParseSystemConfig()
|
||||
|
||||
INDENT_LOG_DURING_SCOPE();
|
||||
|
||||
int nLen = file.GetLength();
|
||||
int nLen = static_cast<int>(file.GetLength());
|
||||
if (nLen == 0)
|
||||
{
|
||||
CryWarning(VALIDATOR_MODULE_SYSTEM, VALIDATOR_WARNING, "Couldn't get length for Config file %s", filename.c_str());
|
||||
|
||||
Reference in New Issue
Block a user