diff options
author | smatz <smatz@openttd.org> | 2009-05-18 16:21:28 +0000 |
---|---|---|
committer | smatz <smatz@openttd.org> | 2009-05-18 16:21:28 +0000 |
commit | 8808f3beea881af5652716c883a21c8031b5e390 (patch) | |
tree | bc14c65d1e66c407b72d254fc926d105eea2f1e4 /src/oldpool.h | |
parent | 5fe906e14992f7a301ae94c357e80af076ab7a63 (diff) | |
download | openttd-8808f3beea881af5652716c883a21c8031b5e390.tar.xz |
(svn r16352) -Codechange: use PoolItem::GetIfValid() instead of PoolItem::IsValidID() and PoolItem::Get()
Diffstat (limited to 'src/oldpool.h')
-rw-r--r-- | src/oldpool.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/oldpool.h b/src/oldpool.h index a21d5fb0a..ab496d2c3 100644 --- a/src/oldpool.h +++ b/src/oldpool.h @@ -287,6 +287,18 @@ struct PoolItem { } /** + * Get item with given index + * @param index item to get + * @return NULL for invalid items + */ + static FORCEINLINE T *GetIfValid(uint index) + { + if (index >= Tpool->GetSize()) return NULL; + T *item = Tpool->Get(index); + return item->IsValid() ? item : NULL; + } + + /** * Returns size of the pool (in number of items) * @return size of the pool */ |