diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-08-24 18:18:09 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-08-24 18:18:09 -0400 |
commit | b7efc4f591dc91876c573e5361f52689705e6e50 (patch) | |
tree | fb408193ec33dec6cd4a9fcf456b7d044ab99511 /tools/validator | |
parent | addcf1712c66e7b058c87ac4342bd08685d6c6aa (diff) | |
download | lingo2-archipelago-b7efc4f591dc91876c573e5361f52689705e6e50.tar.gz lingo2-archipelago-b7efc4f591dc91876c573e5361f52689705e6e50.tar.bz2 lingo2-archipelago-b7efc4f591dc91876c573e5361f52689705e6e50.zip |
Added daedalus
Diffstat (limited to 'tools/validator')
-rw-r--r-- | tools/validator/validator.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/validator/validator.cpp b/tools/validator/validator.cpp index bc6b854..b33f602 100644 --- a/tools/validator/validator.cpp +++ b/tools/validator/validator.cpp | |||
@@ -161,6 +161,11 @@ void ValidatePainting(const PaintingIdentifier& painting_identifier, | |||
161 | 161 | ||
162 | void ValidatePanel(const PanelIdentifier& panel_identifier, | 162 | void ValidatePanel(const PanelIdentifier& panel_identifier, |
163 | const PanelInfo& panel_info) { | 163 | const PanelInfo& panel_info) { |
164 | if (panel_identifier.name().empty()) { | ||
165 | std::cout << "Panel " << panel_identifier.ShortDebugString() | ||
166 | << " has no name." << std::endl; | ||
167 | } | ||
168 | |||
164 | if (panel_info.definitions.empty()) { | 169 | if (panel_info.definitions.empty()) { |
165 | std::cout << "Panel " << panel_identifier.ShortDebugString() | 170 | std::cout << "Panel " << panel_identifier.ShortDebugString() |
166 | << " has no definition, but was referenced:" << std::endl; | 171 | << " has no definition, but was referenced:" << std::endl; |