diff options
Diffstat (limited to 'core/liquivision.c')
-rw-r--r-- | core/liquivision.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/core/liquivision.c b/core/liquivision.c index 1e430bcf1..1ea2b814a 100644 --- a/core/liquivision.c +++ b/core/liquivision.c @@ -148,8 +148,11 @@ static void parse_dives(int log_version, const unsigned char *buf, unsigned int dc = &dive->dc; /* Just the main cylinder until we can handle the buddy cylinder porperly */ - for (i = 0; i < 1; i++) - fill_default_cylinder(dive, i); + for (i = 0; i < 1; i++) { + cylinder_t cyl = { 0 }; + fill_default_cylinder(dive, &cyl); + add_to_cylinder_table(&dive->cylinders, i, cyl); + } // Model 0=Xen, 1,2=Xeo, 4=Lynx, other=Liquivision model = *(buf + ptr); |