m1n1.proxy: Fix typos in fb_blit/unblit

Signed-off-by: Hector Martin <marcan@marcan.st>
This commit is contained in:
Hector Martin 2021-11-27 01:24:17 +09:00
parent c835b1d2fe
commit 32515c936f

View file

@ -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):