| 573 | } |
| 574 | |
| 575 | S32 Dictionary::getIntVariable(StringTableEntry name, bool *entValid) |
| 576 | { |
| 577 | Entry *ent = lookup(name); |
| 578 | if (ent) |
| 579 | { |
| 580 | if (entValid) |
| 581 | *entValid = true; |
| 582 | return ent->getIntValue(); |
| 583 | } |
| 584 | |
| 585 | if (entValid) |
| 586 | *entValid = false; |
| 587 | |
| 588 | return 0; |
| 589 | } |
| 590 | |
| 591 | F32 Dictionary::getFloatVariable(StringTableEntry name, bool *entValid) |
| 592 | { |
nothing calls this directly
no test coverage detected