From fefad640cd171fd17f8a7e08326c7e6f3e91d684 Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Sat, 11 Feb 2017 18:04:42 +0200 Subject: CRYO: Change the version of cryo.dat to be a 32-bit integer (1/2) Though it's unlikely that we'll ever have that many changes, it's better to provision for more space now, for versioning --- devtools/create_cryo/create_cryo_dat.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/devtools/create_cryo/create_cryo_dat.cpp b/devtools/create_cryo/create_cryo_dat.cpp index 5a693d96fe..ca6d4bf790 100644 --- a/devtools/create_cryo/create_cryo_dat.cpp +++ b/devtools/create_cryo/create_cryo_dat.cpp @@ -27,7 +27,7 @@ #include "eden_rooms.h" #include "eden_static.h" -#define CRYO_DAT_VER 1 // 1 byte +#define CRYO_DAT_VER 1 // 32-bit integer template static void writeLE(FILE *f, T value) { @@ -192,7 +192,7 @@ static int emitData(char *outputFilename) { printf("Generating %s...\n", outputFilename); fwrite("CRYODATA", 8, 1, f); - writeLE(f, CRYO_DAT_VER); + writeLE(f, CRYO_DAT_VER); emitIcons(f); emitRooms(f); -- cgit v1.2.3