src/gfxinit.cpp
branchcustombridgeheads
changeset 5650 aefc131bf5ce
parent 5649 55c8267c933f
child 6015 9b25ff032edd
equal deleted inserted replaced
5649:55c8267c933f 5650:aefc131bf5ce
    15 #include "variables.h"
    15 #include "variables.h"
    16 #include "fontcache.h"
    16 #include "fontcache.h"
    17 #include <string.h>
    17 #include <string.h>
    18 
    18 
    19 typedef struct MD5File {
    19 typedef struct MD5File {
    20 	const char * const filename;     // filename
    20 	const char * filename;     // filename
    21 	const md5_byte_t hash[16]; // md5 sum of the file
    21 	md5_byte_t hash[16]; // md5 sum of the file
    22 } MD5File;
    22 } MD5File;
    23 
    23 
    24 typedef struct FileList {
    24 typedef struct FileList {
    25 	const MD5File basic[4];     // grf files that always have to be loaded
    25 	MD5File basic[4];     // grf files that always have to be loaded
    26 	const MD5File landscape[3]; // landscape specific grf files
    26 	MD5File landscape[3]; // landscape specific grf files
    27 } FileList;
    27 } FileList;
    28 
    28 
    29 enum {
    29 enum {
    30 	SKIP = 0xFFFE,
    30 	SKIP = 0xFFFE,
    31 	END  = 0xFFFF
    31 	END  = 0xFFFF