| 2570 | //------------------------------------------------------------------------------ |
| 2571 | |
| 2572 | S32 ConsoleValue::getSignedIntValue() |
| 2573 | { |
| 2574 | if(type <= TypeInternalString) |
| 2575 | return (S32)fval; |
| 2576 | else |
| 2577 | return dAtoi(Con::getData(type, dataPtr, 0, enumTable)); |
| 2578 | } |
| 2579 | |
| 2580 | U32 ConsoleValue::getIntValue() |
| 2581 | { |