1
0
Fork 0

added help messages for the configfile and updated the readme and install to reflect libpng and zlib

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@396
This commit is contained in:
Peter Veenstra 2002-10-22 17:52:38 +00:00
parent 2f528432fc
commit 18ae21e866
13 changed files with 35 additions and 11 deletions

View file

@ -41,7 +41,7 @@ void Prop_string::SetValue(char* input){
void Prop_bool::SetValue(char* input){
input=trim(input);
if((input[0]=='0') ||(input[0]=='D')||( (input[0]=='O') && (input[0]=='F'))){
if((input[0]=='0') ||(input[0]=='D')||( (input[0]=='O') && (input[0]=='F'))||(input[0]=='f')){
__value._bool=false;
}else{
__value._bool=true;
@ -231,6 +231,7 @@ void Config::ParseConfigFile(const char* configfilename){
case '%':
case '\0':
case '\n':
case '#':
case ' ':
continue;
break;