mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
Remove check for whether a site is used before saving it.
Signed-off-by: Doug Junkins <junkins@foghead.com>
This commit is contained in:
parent
58f2e5f77c
commit
9b5eab4ca1
2 changed files with 1 additions and 6 deletions
|
@ -883,9 +883,6 @@ static void save_divesites(git_repository *repo, struct dir *tree)
|
|||
for (int i = 0; i < dive_site_table.nr; i++) {
|
||||
struct membuffer b = { 0 };
|
||||
struct dive_site *ds = get_dive_site(i, &dive_site_table);
|
||||
/* Only write used dive sites */
|
||||
if (!is_dive_site_used(ds, false))
|
||||
continue;
|
||||
struct membuffer site_file_name = { 0 };
|
||||
put_format(&site_file_name, "Site-%08x", ds->uuid);
|
||||
show_utf8(&b, "name ", ds->name, "\n");
|
||||
|
|
|
@ -596,9 +596,7 @@ void save_dives_buffer(struct membuffer *b, const bool select_only, bool anonymi
|
|||
put_format(b, "<divesites>\n");
|
||||
for (i = 0; i < dive_site_table.nr; i++) {
|
||||
struct dive_site *ds = get_dive_site(i, &dive_site_table);
|
||||
/* Only write used dive sites */
|
||||
if (!is_dive_site_used(ds, false))
|
||||
continue;
|
||||
/* Only write used dive sites when exporting selected dives */
|
||||
if (select_only && !is_dive_site_used(ds, true))
|
||||
continue;
|
||||
|
||||
|
|
Loading…
Reference in a new issue