(svn r22564) -Codechange: Rename Get and Store persistent storage functions to GetValue and StoreValue.
This commit is contained in:
@@ -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++;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user