diff --git a/lib/src/lib.rs b/lib/src/lib.rs index 67f81dd..e469b24 100644 --- a/lib/src/lib.rs +++ b/lib/src/lib.rs @@ -179,7 +179,7 @@ where fn process_messages(&mut self) { while let Ok(msg) = self.receiver.try_recv() { - #[allow(clippy::single_match)] + #[allow(clippy::single_match, unreachable_patterns)] match msg { EmulatorMessage::Stop => { self.cpu.memory.flush_rom();