From d1c59110344d8fd0bae9abc5cc94adfa314626ba Mon Sep 17 00:00:00 2001 From: peter1138 Date: Fri, 8 Dec 2006 19:12:43 +0000 Subject: [PATCH] (svn r7436) -Codechange: Add action7/9/D variable 0x9A (-1) --- newgrf.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/newgrf.c b/newgrf.c index 9e4b55ec9a..3eb3728278 100644 --- a/newgrf.c +++ b/newgrf.c @@ -2218,6 +2218,9 @@ static uint32 GetParamVal(byte param, uint32 *cond_val) case 0x92: /* Game mode */ return _game_mode; + case 0x9A: /* Always -1 */ + return -1; + case 0x9D: /* TTD Platform, 00=TTDPatch, 01=OpenTTD */ return 1;