1
0
Fork 0

Fix lexical typo

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@3561
This commit is contained in:
Peter Veenstra 2010-03-15 20:02:04 +00:00
parent a76c232be0
commit 2c2ddb45d9

View file

@ -213,7 +213,7 @@ bool Property::CheckValue(Value const& in, bool warn){
return true;
}
}
if(warn) LOG_MSG("\"%s\" is not a valid value for variable: %s.\nIt might now be reset it to default value: %s",in.ToString().c_str(),propname.c_str(),default_value.ToString().c_str());
if(warn) LOG_MSG("\"%s\" is not a valid value for variable: %s.\nIt might now be reset to the default value: %s",in.ToString().c_str(),propname.c_str(),default_value.ToString().c_str());
return false;
}