1
0
Fork 0

Fix bug #395 DOSBox can't handle double-quoted values in dosbox.conf files.

Extend the fix to include single quoted values.
Fix a common typo: Separator => Separator


Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@3950
This commit is contained in:
Peter Veenstra 2015-10-20 17:06:29 +00:00
parent b2bcdaf1ef
commit 76a04f0807
2 changed files with 20 additions and 12 deletions

View file

@ -294,10 +294,10 @@ public:
class Prop_multival:public Property{
protected:
Section_prop* section;
std::string seperator;
std::string separator;
void make_default_value();
public:
Prop_multival(std::string const& _propname, Changeable::Value when,std::string const& sep):Property(_propname,when), section(new Section_prop("")),seperator(sep) {
Prop_multival(std::string const& _propname, Changeable::Value when,std::string const& sep):Property(_propname,when), section(new Section_prop("")),separator(sep) {
default_value = value = "";
}
Section_prop *GetSection() { return section; }