From b54ebaba70f211044ba8aa39ee13599b3945b2ff Mon Sep 17 00:00:00 2001 From: peter1138 Date: Sun, 23 Apr 2006 18:03:55 +0000 Subject: [PATCH] (svn r4549) - NewGRF: store the grf version from Action 0x08. --- newgrf.c | 3 +++ newgrf.h | 1 + 2 files changed, 4 insertions(+) diff --git a/newgrf.c b/newgrf.c index af3f62869b..584f671e3f 100644 --- a/newgrf.c +++ b/newgrf.c @@ -2017,6 +2017,7 @@ static void SkipIf(byte *buf, int len) } } +/* Action 0x08 */ static void GRFInfo(byte *buf, int len) { /* <08> @@ -2039,12 +2040,14 @@ static void GRFInfo(byte *buf, int len) info = name + strlen(name) + 1; _cur_grffile->grfid = grfid; + _cur_grffile->grf_version = version; _cur_grffile->flags |= 0x0001; /* set active flag */ DEBUG(grf, 1) ("[%s] Loaded GRFv%d set %08lx - %s:\n%s", _cur_grffile->filename, version, grfid, name, info); } +/* Action 0x0A */ static void SpriteReplace(byte *buf, int len) { /* <0A> [ ...] diff --git a/newgrf.h b/newgrf.h index c4d937461d..5bf2359fc8 100644 --- a/newgrf.h +++ b/newgrf.h @@ -19,6 +19,7 @@ typedef struct GRFFile { uint16 flags; uint16 sprite_offset; SpriteID first_spriteset; ///< Holds the first spriteset's sprite offset. + byte grf_version; struct GRFFile *next; /* A sprite group contains all sprites of a given vehicle (or multiple