From 5b9d78d369566d4888954989d2de3cd38f1e4797 Mon Sep 17 00:00:00 2001 From: Olly Betts Date: Mon, 9 Jul 2018 23:54:32 +1200 Subject: [PATCH] dump3d: Report station WALL flag This was added in 1.2.7. --- src/dump3d.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/dump3d.c b/src/dump3d.c index cfad2149..d081ae4b 100644 --- a/src/dump3d.c +++ b/src/dump3d.c @@ -1,6 +1,6 @@ /* dump3d.c */ /* Show raw contents of .3d file in text form */ -/* Copyright (C) 2001,2002,2006,2011,2012,2013,2014,2015 Olly Betts +/* Copyright (C) 2001,2002,2006,2011,2012,2013,2014,2015,2018 Olly Betts * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -147,6 +147,7 @@ main(int argc, char **argv) if (pimg->flags & img_SFLAG_EXPORTED) printf(" EXPORTED"); if (pimg->flags & img_SFLAG_FIXED) printf(" FIXED"); if (pimg->flags & img_SFLAG_ANON) printf(" ANON"); + if (pimg->flags & img_SFLAG_WALL) printf(" WALL"); printf("\n"); break; case img_XSECT: -- 2.11.4.GIT