diff options
Diffstat (limited to 'devtools/create_cryo')
-rw-r--r-- | devtools/create_cryo/create_cryo_dat.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devtools/create_cryo/create_cryo_dat.cpp b/devtools/create_cryo/create_cryo_dat.cpp index 875acad3f1..5a693d96fe 100644 --- a/devtools/create_cryo/create_cryo_dat.cpp +++ b/devtools/create_cryo/create_cryo_dat.cpp @@ -110,7 +110,7 @@ static void emitStatic(FILE *f) { fwrite(kDinoSpeedForCitaLevel, 1, kNumDinoSpeedForCitaLevel, f); fwrite(kTabletView, 1, kNumTabletView, f); fwrite(kPersoRoomBankTable, 1, kNumPersoRoomBankTable, f); - fwrite(gotos, sizeof(Goto), kNumGotos, f); + fwrite(gotos, 5, kNumGotos, f); // sizeof(Goto) for (int i = 0; i < kNumObjects; i++) { writeLE<byte>(f, _objects[i]._id); |