19:66993500719f | 20:d7b13805d1e0 |
---|---|
230 return; | 230 return; |
231 } | 231 } |
232 | 232 |
233 ParserError ("expected a boolean value, got `%s`", token.chars()); | 233 ParserError ("expected a boolean value, got `%s`", token.chars()); |
234 } | 234 } |
235 | |
236 bool ScriptReader::BoolValue () { | |
237 return (!token.compare ("1") || !token.compare ("true") || !token.compare ("yes")); | |
238 } |