(svn r19497) -Fix: [NewGRF] Bytes and words get sign-extended for temporary/persistent storage. (Spotted by yexo)

This commit is contained in:
frosch
2010-03-21 11:05:39 +00:00
parent b7b01bb9c7
commit c049bf3f38
5 changed files with 9 additions and 9 deletions

View File

@@ -31,7 +31,7 @@
*/
static inline uint32 GetRegister(uint i)
{
extern TemporaryStorageArray<uint32, 0x110> _temp_store;
extern TemporaryStorageArray<int32, 0x110> _temp_store;
return _temp_store.Get(i);
}