| 237 | } |
| 238 | |
| 239 | void Checkbox::LoadState(FileStreamIn& in, bool shouldSetValue) |
| 240 | { |
| 241 | int rev; |
| 242 | in >> rev; |
| 243 | LoadStateValidate(rev <= kSaveStateRev); |
| 244 | |
| 245 | float var; |
| 246 | in >> var; |
| 247 | if (shouldSetValue) |
| 248 | SetValueDirect(var, gTime); |
| 249 | } |
nothing calls this directly
no test coverage detected