We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65b2040 commit 97efc2aCopy full SHA for 97efc2a
services/graphics-server/src/backend/minifb.rs
@@ -237,7 +237,10 @@ impl FrameBuffer for XousDisplay {
237
}
238
239
/// Swaps the drawable buffer to the screen and sends it to the hardware
240
- fn draw(&mut self) { self.redraw(); }
+ fn draw(&mut self) -> Result<(), xous::Error> {
241
+ self.redraw();
242
+ Ok(())
243
+ }
244
245
/// Clears the drawable buffer
246
fn clear(&mut self) {
0 commit comments