diff options
author | rubidium <rubidium@openttd.org> | 2011-11-12 08:10:22 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2011-11-12 08:10:22 +0000 |
commit | bd64bf6372399bad1a92565ae7d3c243658d241f (patch) | |
tree | 7af646337e5ddafe68f0d701711c41ef89d21491 /src/table | |
parent | a8d33a4d89f11c45b9690481b08df3c800292005 (diff) | |
download | openttd-bd64bf6372399bad1a92565ae7d3c243658d241f.tar.xz |
(svn r23193) -Codechange: don't cast away const unneededly
Diffstat (limited to 'src/table')
-rw-r--r-- | src/table/newgrf_debug_data.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/table/newgrf_debug_data.h b/src/table/newgrf_debug_data.h index a07ccc006..9ccbc5544 100644 --- a/src/table/newgrf_debug_data.h +++ b/src/table/newgrf_debug_data.h @@ -298,9 +298,9 @@ class NIHIndustry : public NIHelper { void Resolve(ResolverObject *ro, uint32 index) const { extern void GetIndustryResolver(ResolverObject *ro, uint index); GetIndustryResolver(ro, index); } uint GetPSASize(uint index, uint32 grfid) const { return cpp_lengthof(PersistentStorage, storage); } - int32 *GetPSAFirstPosition(uint index, uint32 grfid) const + const int32 *GetPSAFirstPosition(uint index, uint32 grfid) const { - Industry *i = (Industry *)this->GetInstance(index); + const Industry *i = (const Industry *)this->GetInstance(index); if (i->psa == NULL) return NULL; return (int32 *)(&i->psa->storage); } @@ -446,7 +446,7 @@ class NIHTown : public NIHelper { bool PSAWithParameter() const { return true; } uint GetPSASize(uint index, uint32 grfid) const { return cpp_lengthof(PersistentStorage, storage); } - int32 *GetPSAFirstPosition(uint index, uint32 grfid) const + const int32 *GetPSAFirstPosition(uint index, uint32 grfid) const { Town *t = Town::Get(index); |