Skip to content
Snippets Groups Projects
Commit 5b36043c authored by deuce's avatar deuce
Browse files

Support a UI-specific movetext() implementation.

parent d07ddead
No related branches found
No related tags found
No related merge requests found
......@@ -371,7 +371,10 @@ int ciolib_movetext(int sx, int sy, int ex, int ey, int dx, int dy)
unsigned char *buf;
CIOLIB_INIT();
if(cio_api.movetext != NULL)
return(cio_api.movetext(int sx, int sy, int ex, int ey, int dx, int dy);
width=ex-sx;
height=ey-sy;
buf=(unsigned char *)malloc((width+1)*(height+1)*2);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment