mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-17 23:44:22 +00:00
CRYO: Remove one more usage of sizeof()
This commit is contained in:
parent
24a4c231da
commit
a3f59d8433
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user