| 653 | } |
| 654 | |
| 655 | F32 Dictionary::getFloatVariable(StringTableEntry name, bool *entValid) |
| 656 | { |
| 657 | Entry *ent = lookup(name); |
| 658 | if(ent) |
| 659 | { |
| 660 | if(entValid) |
| 661 | *entValid = true; |
| 662 | return ent->getFloatValue(); |
| 663 | } |
| 664 | |
| 665 | if(entValid) |
| 666 | *entValid = false; |
| 667 | |
| 668 | return 0; |
| 669 | } |
| 670 | |
| 671 | void Dictionary::setVariable(StringTableEntry name, const char *value) |
| 672 | { |
nothing calls this directly
no test coverage detected