Add cast to (hopefully) get AppKit compiling on M1 macs.

This commit is contained in:
Nolan Darilek 2021-03-12 06:20:05 -06:00
parent 1f510120a5
commit 81eba99594
1 changed files with 1 additions and 1 deletions

View File

@ -198,7 +198,7 @@ impl Backend for AppKit {
fn is_speaking(&self) -> Result<bool, Error> {
let is_speaking: i8 = unsafe { msg_send![self.0, isSpeaking] };
Ok(is_speaking == YES)
Ok(is_speaking == YES as i8)
}
}