diff options
Diffstat (limited to 'src/newgrf_storage.h')
-rw-r--r-- | src/newgrf_storage.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/newgrf_storage.h b/src/newgrf_storage.h index f03308509..a7f5788c4 100644 --- a/src/newgrf_storage.h +++ b/src/newgrf_storage.h @@ -62,6 +62,12 @@ struct PersistentStorageArray : BaseStorageArray { free(this->prev_storage); } + /** Resets all values to zero. */ + void ResetToZero() + { + memset(this->storage, 0, sizeof(this->storage)); + } + /** * Stores some value at a given position. * If there is no backup of the data that backup is made and then |