1
0
Fork 0

Uniform warning message

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@3823
This commit is contained in:
Peter Veenstra 2013-03-18 12:35:53 +00:00
parent ffd5cf861e
commit 6005315b20

View file

@ -294,7 +294,7 @@ bool Prop_string::CheckValue(Value const& in, bool warn){
}
}
}
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;
}