* Set the value of a setting. * @param object The object the setting is to be saved in. * @param val Signed version of the new value. */
| 554 | * @param val Signed version of the new value. |
| 555 | */ |
| 556 | void IntSettingDesc::Write(const void *object, int32_t val) const |
| 557 | { |
| 558 | void *ptr = GetVariableAddress(object, this->save); |
| 559 | WriteValue(ptr, this->save.conv, (int64_t)val); |
| 560 | } |
| 561 | |
| 562 | /** |
| 563 | * Read the integer from the the actual setting. |
no test coverage detected