(svn r22564) -Codechange: Rename Get and Store persistent storage functions to GetValue and StoreValue.

This commit is contained in:
terkhen
2011-06-12 20:40:21 +00:00
parent dc6218aa49
commit 0749c65d74
7 changed files with 15 additions and 15 deletions

View File

@@ -967,7 +967,7 @@ void PrepareTextRefStackUsage(byte numEntries)
byte *p = _newgrf_textrefstack->stack;
for (uint i = 0; i < numEntries; i++) {
for (uint j = 0; j < 32; j += 8) {
*p = GB(_temp_store.Get(0x100 + i), j, 8);
*p = GB(_temp_store.GetValue(0x100 + i), j, 8);
p++;
}
}