diff options
| author | Paul Gilbert | 2007-03-06 08:20:47 +0000 | 
|---|---|---|
| committer | Paul Gilbert | 2007-03-06 08:20:47 +0000 | 
| commit | f3c6f899d1ed029159151d5601bc5c60ceb8961d (patch) | |
| tree | 058f7423365b06051734cbc824ad95a24d382931 | |
| parent | ace739eafb318b2fc0c84c99ac087ba0f29b3b7f (diff) | |
| download | scummvm-rg350-f3c6f899d1ed029159151d5601bc5c60ceb8961d.tar.gz scummvm-rg350-f3c6f899d1ed029159151d5601bc5c60ceb8961d.tar.bz2 scummvm-rg350-f3c6f899d1ed029159151d5601bc5c60ceb8961d.zip | |
Added extra animation entries needed for Blacksmith
svn-id: r26001
| -rw-r--r-- | tools/create_lure/create_lure_dat.cpp | 2 | ||||
| -rw-r--r-- | tools/create_lure/create_lure_dat.h | 2 | 
2 files changed, 3 insertions, 1 deletions
| diff --git a/tools/create_lure/create_lure_dat.cpp b/tools/create_lure/create_lure_dat.cpp index 93c3cfc564..3509b2fc59 100644 --- a/tools/create_lure/create_lure_dat.cpp +++ b/tools/create_lure/create_lure_dat.cpp @@ -465,6 +465,8 @@ void read_room_exit_joins(byte *&data, uint16 &totalSize) {  void read_anim_data(byte *&data, uint16 &totalSize) {  	// Add special pixel records  	add_anim_record(0x5c95); +	add_anim_record(0x5ce9);		// Blacksmith in bar? +	add_anim_record(0x5915);		// Blacksmith hammering  	// Get the animation data records  	AnimRecord inRec; diff --git a/tools/create_lure/create_lure_dat.h b/tools/create_lure/create_lure_dat.h index e4384b5238..cfebc33824 100644 --- a/tools/create_lure/create_lure_dat.h +++ b/tools/create_lure/create_lure_dat.h @@ -27,7 +27,7 @@  #include "common/endian.h"  #define VERSION_MAJOR 1 -#define VERSION_MINOR 15 +#define VERSION_MINOR 16  #define ENGLISH_LURE   #define DATA_SEGMENT 0xac50 | 
