From bdd76b302dcbffa58ce4cf5ea069f02a9971d2c8 Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Fri, 8 Dec 2023 18:41:36 +0100 Subject: [PATCH] wav: fix cue loading Signed-off-by: Simon Rozman --- include/stdex/wav.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/stdex/wav.hpp b/include/stdex/wav.hpp index 6f21aa1ae..7dcb56811 100644 --- a/include/stdex/wav.hpp +++ b/include/stdex/wav.hpp @@ -585,7 +585,7 @@ namespace stdex if (c) c->note = note.note; } - else if (stdex::idrec::ignore(dat)) _Unlikely_ + else if (!stdex::idrec::ignore(dat)) _Unlikely_ return false; } }