diff options
author | frosch <frosch@openttd.org> | 2011-07-04 20:31:57 +0000 |
---|---|---|
committer | frosch <frosch@openttd.org> | 2011-07-04 20:31:57 +0000 |
commit | 8b18292a2ec1be31d7c1fe7cfcba26facb9c7ada (patch) | |
tree | d7620f4ae011379b988374683f8a38dacb49a2fb /src/newgrf_house.cpp | |
parent | d2b236802cb202c07aa7586b197935b96dddee7b (diff) | |
download | openttd-8b18292a2ec1be31d7c1fe7cfcba26facb9c7ada.tar.xz |
(svn r22634) -Codechange: Deduplicate some code. Note that zeroing 'count' is intentionally removed, it is only used together with 'scope'.
Diffstat (limited to 'src/newgrf_house.cpp')
-rw-r--r-- | src/newgrf_house.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/newgrf_house.cpp b/src/newgrf_house.cpp index 1ec391c51..f6e1d3790 100644 --- a/src/newgrf_house.cpp +++ b/src/newgrf_house.cpp @@ -397,10 +397,7 @@ static void NewHouseResolver(ResolverObject *res, HouseID house_id, TileIndex ti res->callback = CBID_NO_CALLBACK; res->callback_param1 = 0; res->callback_param2 = 0; - res->last_value = 0; - res->trigger = 0; - res->reseed = 0; - res->count = 0; + res->ResetState(); const HouseSpec *hs = HouseSpec::Get(house_id); res->grffile = (hs != NULL ? hs->grf_prop.grffile : NULL); |