summaryrefslogtreecommitdiff
path: root/src/newgrf_spritegroup.h
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2011-11-08 17:22:19 +0000
committerfrosch <frosch@openttd.org>2011-11-08 17:22:19 +0000
commite08a227b535fe5ea2fe8d986c308519fcd8fbf86 (patch)
tree47de21dfd37fe284ce8a4909d0fb32c06542bbfd /src/newgrf_spritegroup.h
parent7a3e362763d248c852663c49178f5f690b9782fc (diff)
downloadopenttd-e08a227b535fe5ea2fe8d986c308519fcd8fbf86.tar.xz
(svn r23136) -Change: [NewGRF v8] Deprecate old-style callback results 0xFF??.
Diffstat (limited to 'src/newgrf_spritegroup.h')
-rw-r--r--src/newgrf_spritegroup.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/newgrf_spritegroup.h b/src/newgrf_spritegroup.h
index 46d7a1bda..4395a3923 100644
--- a/src/newgrf_spritegroup.h
+++ b/src/newgrf_spritegroup.h
@@ -240,14 +240,15 @@ struct CallbackResultSpriteGroup : SpriteGroup {
/**
* Creates a spritegroup representing a callback result
* @param value The value that was used to represent this callback result
+ * @param grf_version8 True, if we are dealing with a new NewGRF which uses GRF version >= 8.
*/
- CallbackResultSpriteGroup(uint16 value) :
+ CallbackResultSpriteGroup(uint16 value, bool grf_version8) :
SpriteGroup(SGT_CALLBACK),
result(value)
{
- /* Old style callback results have the highest byte 0xFF so signify it is a callback result
+ /* Old style callback results (only valid for version < 8) have the highest byte 0xFF so signify it is a callback result.
* New style ones only have the highest bit set (allows 15-bit results, instead of just 8) */
- if ((this->result >> 8) == 0xFF) {
+ if (!grf_version8 && (this->result >> 8) == 0xFF) {
this->result &= ~0xFF00;
} else {
this->result &= ~0x8000;