summaryrefslogtreecommitdiff
path: root/src/verify.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-04-04 23:09:29 +0200
committerCarl Hetherington <cth@carlh.net>2023-04-04 23:37:44 +0200
commitef41b0c235eaa9f02203fd8438873e951bf3de07 (patch)
tree0511d4f08fee449fe12e461be349071dcce701ba /src/verify.h
parent3d7d70e0cf79cf5bb68c24d830d4e08e22ca4308 (diff)
Add check for mismatch between sound asset and MainSoundConfiguration.v1.8.66
Diffstat (limited to 'src/verify.h')
-rw-r--r--src/verify.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/verify.h b/src/verify.h
index d05c92eb..7696ea85 100644
--- a/src/verify.h
+++ b/src/verify.h
@@ -425,7 +425,13 @@ public:
/** The sound assets in the CPL do not have the same audio channel count.
* file contains the filename of the first asset to differ
*/
- MISMATCHED_SOUND_CHANNEL_COUNTS
+ MISMATCHED_SOUND_CHANNEL_COUNTS,
+ /** The CPL contains a MainSoundConfiguration tag which does not describe the number of
+ * channels in the audio assets.
+ * note contains details of what is wrong
+ * file contains the CPL filename
+ */
+ INVALID_MAIN_SOUND_CONFIGURATION,
};
VerificationNote (Type type, Code code)