From 0302c52be8488b35e32df5ed3b983175a92810f5 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Thu, 27 Nov 2025 12:40:43 -0500 Subject: audio: make sounds! woah --- audio/src/program.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'audio/src/program.rs') diff --git a/audio/src/program.rs b/audio/src/program.rs index cd050e3..efda90b 100644 --- a/audio/src/program.rs +++ b/audio/src/program.rs @@ -246,6 +246,6 @@ impl PartialOrd for Program { } impl Ord for Program { fn cmp(&self, other: &Self) -> std::cmp::Ordering { - other.priority.cmp(&self.priority) + self.priority.cmp(&other.priority) } } -- cgit v1.2.3-freya