| 637 | } |
| 638 | |
| 639 | S32 Dictionary::getIntVariable(StringTableEntry name, bool *entValid) |
| 640 | { |
| 641 | Entry *ent = lookup(name); |
| 642 | if(ent) |
| 643 | { |
| 644 | if(entValid) |
| 645 | *entValid = true; |
| 646 | return ent->getIntValue(); |
| 647 | } |
| 648 | |
| 649 | if(entValid) |
| 650 | *entValid = false; |
| 651 | |
| 652 | return 0; |
| 653 | } |
| 654 | |
| 655 | F32 Dictionary::getFloatVariable(StringTableEntry name, bool *entValid) |
| 656 | { |
nothing calls this directly
no test coverage detected