Skip to content

Commit

Permalink
CRYO: Change the version of cryo.dat to be a 32-bit integer (1/2)
Browse files Browse the repository at this point in the history
Though it's unlikely that we'll ever have that many changes, it's
better to provision for more space now, for versioning
  • Loading branch information
bluegr committed Feb 11, 2017
1 parent a3f59d8 commit fefad64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions devtools/create_cryo/create_cryo_dat.cpp
Expand Up @@ -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 <typename T>
static void writeLE(FILE *f, T value) {
Expand Down Expand Up @@ -192,7 +192,7 @@ static int emitData(char *outputFilename) {
printf("Generating %s...\n", outputFilename);

fwrite("CRYODATA", 8, 1, f);
writeLE<byte>(f, CRYO_DAT_VER);
writeLE<uint32>(f, CRYO_DAT_VER);

emitIcons(f);
emitRooms(f);
Expand Down

0 comments on commit fefad64

Please sign in to comment.