From 1a27cc025dd91ff724d0c898184b97422b6b4a17 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Fri, 9 Jun 2023 17:58:58 -0400 Subject: [PATCH] infer the name of wal json from the name of the file being loaded --- common/imglib.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/imglib.cc b/common/imglib.cc index dcf8c3fd..44d52e5e 100644 --- a/common/imglib.cc +++ b/common/imglib.cc @@ -407,6 +407,8 @@ std::optional load_wal_json_meta( texture_meta meta{}; + meta.name = name; + { fs::path wal = fs::path(name).replace_extension(".wal");