| 589 | } |
| 590 | |
| 591 | F32 Dictionary::getFloatVariable(StringTableEntry name, bool *entValid) |
| 592 | { |
| 593 | Entry *ent = lookup(name); |
| 594 | if (ent) |
| 595 | { |
| 596 | if (entValid) |
| 597 | *entValid = true; |
| 598 | return ent->getFloatValue(); |
| 599 | } |
| 600 | |
| 601 | if (entValid) |
| 602 | *entValid = false; |
| 603 | |
| 604 | return 0; |
| 605 | } |
| 606 | |
| 607 | void Dictionary::setVariable(StringTableEntry name, const char *value) |
| 608 | { |
nothing calls this directly
no test coverage detected