From dd2aeeb66d68dd2f74a3aee5206ea6b2e850e871 Mon Sep 17 00:00:00 2001 From: Jarrod Doyle Date: Fri, 23 Aug 2024 13:43:55 +0100 Subject: [PATCH] Add name attribute to make visually finding property chunks easier --- patterns/db_files/DbFile.pat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patterns/db_files/DbFile.pat b/patterns/db_files/DbFile.pat index fd6624c..4e717db 100644 --- a/patterns/db_files/DbFile.pat +++ b/patterns/db_files/DbFile.pat @@ -86,7 +86,7 @@ struct TOCEntry { ("WREXT"): Chunk world_rep @ offset; (_): { if (std::string::starts_with(name, "P$")) { - Chunk property_chunk @ offset; + Chunk property_chunk @ offset [[name(name)]]; } } }