From 32515c936fd1ddf0015b41c25041ea016d088a63 Mon Sep 17 00:00:00 2001 From: Hector Martin Date: Sat, 27 Nov 2021 01:24:17 +0900 Subject: [PATCH] m1n1.proxy: Fix typos in fb_blit/unblit Signed-off-by: Hector Martin --- proxyclient/m1n1/proxy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proxyclient/m1n1/proxy.py b/proxyclient/m1n1/proxy.py index f75849a0..e48a74d7 100644 --- a/proxyclient/m1n1/proxy.py +++ b/proxyclient/m1n1/proxy.py @@ -985,9 +985,9 @@ class M1N1Proxy(Reloadable): def fb_shutdown(self, restore_logo=True): return self.request(self.P_FB_SHUTDOWN, restore_logo) def fb_blit(self, x, y, w, h, ptr, stride): - return self.request(self.P_FB_BLIP, x, y, w, h, ptr, stride) + return self.request(self.P_FB_BLIT, x, y, w, h, ptr, stride) def fb_unblit(self, x, y, w, h, ptr, stride): - return self.request(self.P_FB_UNBLIP, x, y, w, h, ptr, stride) + return self.request(self.P_FB_UNBLIT, x, y, w, h, ptr, stride) def fb_fill(self, color): return self.request(self.P_FB_FILL, x, y, w, h, color) def fb_clear(self, color):